forked from mattallty/Caporal.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "caporal",
"version": "0.3.0",
"description": "A full-featured framework for building command line applications (cli) with node.js",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint lib tests",
"test": "./node_modules/mocha/bin/mocha --require ./tests/utils/bootstrap.js --full-trace --recursive -R mocha-unfunk-reporter tests/",
"test-watch": "npm run lint && ./node_modules/mocha/bin/mocha --require ./tests/utils/bootstrap.js --full-trace --watch --recursive -R mocha-unfunk-reporter tests/",
"coverage": "./node_modules/.bin/istanbul cover --include-all-sources true -x **/examples/**/* --print both ./node_modules/.bin/_mocha -- --require ./tests/utils/bootstrap.js -R spec --recursive tests/",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0",
"precommit": "npm run lint && npm test",
"prepush": "npm run lint && npm test",
"commitmsg": "validate-commit-msg",
"postinstall": "(test -f ./node_modules/husky/bin/install.js && node ./node_modules/husky/bin/install.js) || exit 0"
},
"engines": {
"node": ">= 4.4.5"
},
"keywords": [
"cli",
"argument-parser",
"command",
"commander",
"clap",
"cli-app",
"minimist",
"optimist",
"cli-table",
"command line apps"
],
"author": "Matthias ETIENNE <[email protected]> (https://github.com/mattallty)",
"repository": "mattallty/Caporal.js",
"license": "MIT",
"devDependencies": {
"codacy-coverage": "^2.0.1",
"commitizen": "^2.9.5",
"conventional-changelog-cli": "^1.2.0",
"conventional-commits-detector": "^0.1.1",
"conventional-github-releaser": "^1.1.3",
"conventional-recommended-bump": "^0.3.0",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.15.0",
"husky": "^0.13.1",
"istanbul": "^0.4.5",
"json": "^9.0.4",
"mocha": "^3.2.0",
"mocha-unfunk-reporter": "^0.4.0",
"should": "^11.2.0",
"sinon": "^1.17.7",
"trash": "^4.0.0",
"validate-commit-msg": "^2.11.1"
},
"dependencies": {
"bluebird": "^3.4.7",
"chalk": "^1.1.3",
"cli-table2": "^0.2.0",
"fast-levenshtein": "^2.0.6",
"lodash.camelcase": "^4.3.0",
"minimist": "^1.2.0",
"prettyjson": "^1.2.1",
"tabtab": "^2.2.2",
"winston": "^2.3.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}