forked from rafinskipg/git-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.47 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
{
"name": "git-changelog",
"description": "A git changelog tool",
"version": "2.0.0",
"homepage": "https://github.com/rafinskipg/git-changelog",
"author": {
"name": "rafinskipg",
"email": "rafinskipg@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/rafinskipg/git-changelog.git"
},
"bugs": {
"url": "https://github.com/rafinskipg/git-changelog/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rafinskipg/git-changelog/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">= 8.17.0"
},
"scripts": {
"pretest": "grunt",
"posttest": "grunt",
"test": "mocha -R spec test/**/*.spec.js",
"preversion": "npm test",
"coverage": "istanbul cover node_modules/.bin/_mocha -- -R dot"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^4.1.1",
"debug": "^4.1.1",
"fs-extra": "^8.1.0",
"lodash": "^4.17.15"
},
"preferGlobal": true,
"bin": {
"git-changelog": "tasks/command.js"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"grunt": "^1.0.4",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-mocha-test": "^0.13.3",
"istanbul": "^0.4.5",
"mocha": "^7.0.1",
"proxyquire": "^2.1.3",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0"
},
"keywords": [
"gruntplugin, git, git-changelog, angularjs, angular, commit, log"
]
}