-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "confirmed",
"version": "2.3.2",
"description": "Framework agnostic asynchronous confirmation module",
"license": "MIT",
"main": "dist/confirmer.js",
"homepage": "https://github.com/sukima/confirmed",
"repository": {
"type": "git",
"url": "git://github.com/sukima/confirmed.git"
},
"bugs": {
"url": "http://github.com/sukima/confirmed/issues"
},
"author": {
"name": "Devin Weaver",
"email": "[email protected]",
"url": "https://tritarget.org/"
},
"scripts": {
"preversion": "yarn docs && git add README.md",
"docs": "jsdoc2md > README.md",
"clean": "rm -r dist",
"build": "mkdir -p dist && (node bin/header; babel src/confirmer.js) > dist/confirmer.js",
"test": "yarn build && mocha",
"prepare": "yarn build"
},
"files": [
"dist",
"yarn.lock"
],
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"jsdoc-to-markdown": "^5.0.2",
"mocha": "^6.2.1",
"sinon": "^7.5.0"
},
"jsdoc2md": {
"template": "docs/README.hbs",
"files": [
"src/confirmer.js"
],
"partial": "docs/*.hbs",
"no-gfm": false,
"global-index-format": "none",
"param-list-format": "list",
"separators": true,
"heading-depth": 3,
"example-lang": "js"
},
"dependencies": {},
"volta": {
"node": "10.16.3",
"yarn": "1.17.3"
}
}