-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 989 Bytes
/
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
{
"name": "git-travis",
"description": "Git sub command to show travis status",
"version": "3.1.0",
"dependencies": {
"chalk": "^1.0.0",
"prompt": "^1.0.0",
"travis-ci": "^2.1.1",
"which": "^1.0.8"
},
"devDependencies": {
"eslint": "^3.19.0",
"jenkins-mocha": "^4.1.2",
"nyc": "^10.3.0"
},
"keywords": [
"travis-ci",
"travis",
"git-cli",
"builds"
],
"main": "./lib/",
"bin": {
"git-travis": "./bin/git-travis.js"
},
"scripts": {
"pretest": "eslint --fix .",
"test": "jenkins-mocha ./tests/",
"posttest": "nyc check-coverage; nyc report"
},
"preferGlobal": "true",
"bugs": {
"url": "http://github.com/davglass/git-travis/issues"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://github.com/davglass/git-travis.git"
},
"nyc": {
"check-coverage": true,
"statements": 83,
"lines": 80,
"branches": 65,
"functions": 88
}
}