-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "jflint",
"version": "0.3.2",
"description": "A client tool to lint Jenkinsfile",
"main": "index.js",
"bin": {
"jflint": "./bin/jflint.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"ci": "npm run test:cover",
"test": "./node_modules/.bin/_mocha --require intelli-espower-loader --recursive",
"test:cover": "./node_modules/.bin/istanbul --include-all-sources cover ./node_modules/.bin/_mocha --report lcovonly -- --require intelli-espower-loader --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miyajan/jflint.git"
},
"keywords": [
"jenkins",
"lint"
],
"author": "miyajan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/miyajan/jflint/issues"
},
"homepage": "https://github.com/miyajan/jflint",
"dependencies": {
"commander": "^2.9.0",
"form-data": "^2.1.2",
"js-base64": "^2.1.9",
"node-fetch": "^1.6.3"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^2.11.16",
"intelli-espower-loader": "^1.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"power-assert": "^1.4.2",
"proxyquire": "^1.7.11",
"sinon": "6.3.5",
"sinon-chai": "^3.2.0"
}
}