-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "jenkins-cli",
"version": "1.0.0",
"description": "A command line tool for interfacing with jenkins",
"main": "index.js",
"scripts": {
"lint": "jshint ."
},
"bin": {
"jenkins": "lib/cli.js"
},
"repository": {
"type": "git",
"url": "[email protected]:hjerling/jenkins-cli.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/hjerling/jenkins-cli/issues"
},
"homepage": "https://github.com/hjerling/jenkins-cli",
"private": true,
"jshintConfig": {
"quotmark": "single",
"unused": true,
"undef": true,
"node": true,
"globals": {
"describe": false,
"it": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
},
"dependencies": {
"async": "^0.9.0",
"chalk": "^1.0.0",
"columnify": "^1.4.1",
"commander": "^2.7.1",
"https-agent": "^1.0.0",
"lodash": "^3.5.0",
"moment": "^2.9.0",
"node-jenkins": "git://github.com/hjerling/node-jenkins#v1.0.1",
"progress": "^1.1.8",
"request": "^2.53.0"
},
"devDependencies": {
"jshint": "^2.5.10",
"mocha": "^2.2.1"
}
}