forked from lob/generate-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.86 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
{
"name": "generate-changelog",
"version": "1.8.0",
"description": "Generate a changelog from git commits.",
"bin": {
"generate-changelog": "./bin/generate",
"changelog": "./bin/generate"
},
"main": "./lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"release:major": "./bin/generate -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "./bin/generate -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "./bin/generate -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint .",
"test": "NODE_ENV=test istanbul cover _mocha -- test --recursive --timeout 30000",
"test-no-cover": "NODE_ENV=test mocha test --recursive --timeout 30000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lob/generate-changelog.git"
},
"keywords": [
"changelog",
"cli",
"npm",
"version",
"git",
"semver"
],
"author": "Lob <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lob/generate-changelog/issues"
},
"homepage": "https://github.com/lob/generate-changelog#readme",
"dependencies": {
"bluebird": "^3.0.6",
"commander": "^2.9.0",
"github-url-from-git": "^1.4.0"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
"eslint-config-lob": "^2.4.0",
"eslint-plugin-lob": "^1.1.0",
"istanbul": "^0.4.1",
"mocha": "^2.3.4",
"sinon": "^1.17.2"
},
"engine": {
"node": ">= 0.10.x"
}
}