-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
{
"name": "turbo-commit",
"version": "0.8.0",
"description": "CLI tool for Turbo Commit convention",
"main": "bin/cli.js",
"scripts": {
"test": "nyc jasmine-node --verbose --captureExceptions test",
"test:watch": "npm test & onchange lib/*.js bin/*.js test/* -- npm test",
"coverage": "nyc report --reporter=text-lcov > coverage.json"
},
"engines": {
"node": "7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labs-js/turbo-commit.git"
},
"keywords": [
"git",
"commit convention",
"turbo-commit",
"commit",
"convetion",
"cli",
"change-log",
"git plugin"
],
"author": "Samuel Fabrizio <[email protected]>, Alan Campora <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/labs-js/turbo-commit/issues"
},
"homepage": "https://github.com/labs-js/turbo-commit#readme",
"dependencies": {
"colors": "^1.1.2",
"commander": "^2.9.0",
"inquirer": "^1.1.2",
"promise": "^7.1.1",
"shelljs": "^0.7.4",
"turbo-git-config": "^0.1.0",
"turbo-git-log": "^0.1.0"
},
"bin": {
"git-turbo": "bin/git/git-turbo.js",
"git-tc": "bin/git/git-tc.js",
"git-tl": "bin/git/git-tl.js",
"git-ta": "bin/git/git-ta.js",
"turbo": "bin/cli.js"
},
"devDependencies": {
"console-mock": "^1.0.24",
"eslint": "^3.4.0",
"jasmine-node": "^1.14.5",
"nyc": "^8.1.0",
"onchange": "^3.0.0"
}
}