-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.64 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-velocity",
"version": "0.0.0-development",
"description": "CLI tool used to calculate git commit velocity",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ibarsi/git-velocity"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bin": {
"git-velocity": "./dist/index.js"
},
"scripts": {
"commit": "git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"clean": "rm -rf dist && mkdir dist",
"build": "npm run clean && babel main/ -s -D -d dist/",
"debug": "npm run build && node --inspect dist/index.js",
"test": "mocha main/**/*.test.js --compilers js:babel-register",
"start": "node dist/index.js"
},
"author": "ibarsi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ibarsi/git-velocity/issues"
},
"dependencies": {
"babel-runtime": "6.26.0",
"blessed": "0.1.81",
"blessed-contrib": "4.7.5",
"chalk": "1.1.3",
"clear": "0.0.1",
"clui": "0.3.1",
"figlet": "1.2.0",
"inquirer": "3.0.1",
"isomorphic-fetch": "2.2.1",
"moment": "2.17.1"
},
"devDependencies": {
"babel-cli": "6.9.0",
"babel-core": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-latest": "6.24.1",
"babel-register": "6.23.0",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"commitizen": "2.9.5",
"cz-conventional-changelog": "1.2.0",
"fetch-mock": "5.9.4",
"lodash": "4.17.4",
"mocha": "3.2.0",
"semantic-release": "6.3.2",
"sinon": "2.1.0",
"sinon-test": "1.0.1"
}
}