-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 779 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 779 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
{
"name": "zeroarg",
"version": "1.0.0",
"description": "zero-code argument parser",
"main": "index.js",
"scripts": {
"test": "jest",
"docs": "documentation readme -s API",
"version": "standard-version"
},
"keywords": [
"zero",
"code",
"argument",
"parser"
],
"author": "Tom MacWright",
"license": "ISC",
"dependencies": {
"ansimd": "^0.2.1",
"documentation": "^4.0.0-rc.1",
"remark": "^7.0.0",
"yargs": "^7.1.0"
},
"devDependencies": {
"cz-conventional-changelog": "^2.0.0",
"jest": "^19.0.2",
"prettier": "^1.2.2",
"standard-version": "^4.0.0"
},
"jest": {
"automock": false
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}