-
Notifications
You must be signed in to change notification settings - Fork 173
/
package.json
56 lines (56 loc) · 1.39 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
{
"name": "jenkins-api",
"version": "0.3.1",
"description": "Jenkins API written in Node.js",
"author": "Shawn Jansepar <shawnjan@gmail.com>",
"contributors": [
"Jakub Podlaha <j.podlaha@gmail.com> (https://github.com/kub1x)"
],
"license": "MIT",
"keywords": [
"github",
"jenkins"
],
"engine": {
"node": ">=0.4"
},
"main": "./lib/main.js",
"scripts": {
"build": "babel ./src --out-dir ./lib",
"audit": "nsp check package",
"lint": "#eslint src test",
"check": "npm run audit && ncu && npm outdated --depth 0",
"test": "npm run build && mocha ./test/main.js",
"validate": "npm run lint && npm test",
"prepare": "npm run build && npm run validate && npm run check",
"major": "pmm major",
"minor": "pmm minor",
"patch": "pmm patch"
},
"pre-commit": [
"validate"
],
"dependencies": {
"request": "^2.81.0"
},
"devDependencies": {
"async": "^2.5.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"bluebird": "^3.5.0",
"chai": "^4.1.1",
"chai-like": "^0.2.14",
"chai-things": "^0.2.0",
"eslint": "^4.4.0",
"mocha": "^3.5.0",
"ncu": "^0.2.1",
"nsp": "^2.7.0",
"pmm": "^1.3.1"
},
"repository": {
"type": "git",
"url": "git@github.com:jansepar/node-jenkins-api.git"
}
}