-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.9 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
{
"name": "conventional-changelog-generator",
"version": "0.0.3",
"description": "cli wrapper to the conventional-changelog module",
"author": "Boris Sirota <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/borisirota/conventional-changelog-generator",
"repository": {
"type": "git",
"url": "https://github.com/borisirota/conventional-changelog-generator.git"
},
"bugs": {
"url": "https://github.com/borisirota/conventional-changelog-generator/issues"
},
"keywords": [
"conventional-changelog",
"changelog",
"cli",
"changelog-cli",
"changelog cli"
],
"contributors": [
"Boris Sirota <[email protected]>"
],
"bin": {
"conventional-changelog-generator": "bin/conventional-changelog-generator.js"
},
"scripts": {
"lint": "jshint --reporter node_modules/jshint-stylish/stylish.js lib/**.js",
"style": "jscs --reporter node_modules/jscs-stylish/jscs-stylish.js lib/**.js",
"format": "jsfmt -w lib/**.js",
"code-check": "npm run lint -s && npm run style -s",
"pretest": "npm run code-check -s",
"test": "istanbul cover _mocha",
"watch": "watch 'npm run code-check -s' lib/",
"security": "nsp audit-package",
"release": "npm version patch -m 'Bumped to %s'",
"postrelease": "git push && git push --tags && npm publish"
},
"devDependencies": {
"chai": "^1.10.0",
"esformatter-braces": "~1.0.0",
"esformatter-dot-notation": "~1.1.0",
"esformatter-quotes": "~1.0.0",
"esformatter-semicolons": "~1.0.3",
"istanbul": "^0.3.5",
"jscs": "^1.9.0",
"jscs-stylish": "^0.3.1",
"jsdoc-to-markdown": "^0.5.9",
"jsdoc2md-anchors": "^0.0.1",
"jsfmt": "^0.4.0",
"jshint": "^2.5.11",
"jshint-stylish": "^1.0.0",
"mocha": "^2.1.0",
"nsp": "^0.5.2",
"watch": "^0.13.0"
},
"dependencies": {
"commander": "^2.6.0",
"conventional-changelog": "0.0.11"
}
}