-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "jenkins",
"description": "Jenkins client",
"version": "1.1.0",
"main": "./lib",
"files": [
"./lib"
],
"dependencies": {
"papi": "^1.1.0"
},
"devDependencies": {
"async": "^3.2.4",
"debug": "^4.3.1",
"fixturefiles": "^0.3.0",
"form-data": "^4.0.0",
"mocha": "^10.0.0",
"nock": "^13.2.9",
"node-uuid": "^1.4.8",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"should": "^13.2.1",
"sinon": "^14.0.0"
},
"scripts": {
"format": "prettier -w .",
"test": "prettier -c . && nyc mocha -- --recursive --check-leaks --timeout 15000",
"acceptance": "NOCK_OFF=true NOCK_REC=false JENKINS_TEST_URL=http://admin:admin@localhost:8080 mocha --recursive --check-leaks --timeout 15000"
},
"keywords": [
"jenkins"
],
"repository": {
"type": "git",
"url": "https://github.com/silas/node-jenkins.git"
},
"bugs": {
"url": "https://github.com/silas/node-jenkins/issues"
},
"author": "Silas Sewell <silas@sewell.org>",
"license": "MIT"
}