-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 956 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 956 Bytes
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
{
"name": "semantic-commit",
"description": "A rigid commit message format.",
"version": "0.2.1",
"main": "index.js",
"license": "MIT",
"dependencies": {
"inquirer": "3.2.1"
},
"scripts": {
"server": "http-server ./out",
"build": "babel src/ -d lib/",
"type": "yarn flow status",
"test": "nyc ava -v",
"doctor": "yarn build && yarn type && yarn test",
"doc:prepare": "yarn jsdoc --configure .jsdoc.json --verbose",
"doc:server": "http-server ./documentation",
"doc": "yarn build && yarn doc:prepare && yarn doc:server"
},
"devDependencies": {
"ava": "0.21.0",
"babel-cli": "^6.26.0",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.62.0",
"http-server": "^0.11.1",
"jsdoc": "^3.5.5",
"minami": "^1.2.3",
"nyc": "^11.4.1"
},
"bin": {
"semantic-commit": "index.js"
},
"nyc": {
"all": true,
"exclude": [
"src",
"documentation"
]
}
}