-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "starterkit",
"version": "0.19.1",
"description": "",
"main": "index.js",
"directories": {
"lib": "lib"
},
"bin": {
"starterkit-install": "./scripts/install.js"
},
"scripts": {
"eslint": "eslint --format=table lib/**/*.js scripts/**/*.js",
"doc": "jsdoc -c jsdoc.conf.json -R README.md -P package.json -t node_modules/docdash -u docs/tutorials",
"build": "webpack",
"test": "mocha --recursive",
"debug": "mocha --watch --reporter spec --inspect --recursive",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"codecov": "codecov",
"preversion": "git fetch --tags && node scripts/changelog.js https://github.com/ifrost/starterkit console",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ifrost/starterkit.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ifrost/starterkit/issues"
},
"homepage": "https://github.com/ifrost/starterkit#readme",
"devDependencies": {
"chai": "^4.0.2",
"codecov": "^3.0.0",
"docdash": "^0.4.0",
"eslint": "^5.0.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"mocha": "^5.0.0",
"sinon": "^5.0.0",
"webpack": "^4.0.0"
}
}