-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
54 lines (54 loc) · 1.13 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
{
"name": "grunt-jenkins",
"description": "Manage Jenkins with Grunt",
"version": "0.8.0",
"homepage": "http://documentup.com/sghill/grunt-jenkins",
"author": {
"name": "sghill",
"email": "sghill.dev@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/sghill/grunt-jenkins.git"
},
"bugs": {
"url": "https://github.com/sghill/grunt-jenkins/issues"
},
"license": "MIT",
"main": "grunt.js",
"bin": "bin/grunt-jenkins",
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"test": "grunt jshint mocha_istanbul"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.4.0",
"grunt": "~1.0.1",
"grunt-cli": "~1.2.0",
"grunt-contrib-jshint": "~1.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "~0.13.2",
"istanbul": "^0.4.5",
"mocha": "~3.1.2",
"should": "~11.1.1"
},
"dependencies": {
"request": "~2.79.0",
"underscore": "~1.8.3",
"q": "~1.4.1",
"netrc": "~0.1.4"
},
"keywords": [
"gruntplugin",
"jenkins",
"ci"
],
"files": [
"LICENSE-MIT",
"README.md",
"bin/",
"tasks/"
]
}