-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
41 lines (41 loc) · 928 Bytes
/
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
{
"name": "dockerfile_lint",
"version": "0.3.3",
"description": "Utility for linting a docker file against accepted good practices",
"main": "index.js",
"bin": {
"dockerfile_lint": "./bin/dockerfile_lint"
},
"scripts": {
"test": "mocha test/**/*spec.js"
},
"repository": {
"type": "git",
"url": "[email protected]:projectatomic/dockerfile_lint.git"
},
"keywords": [
"dockerfile",
"validator",
"lint",
"check"
],
"author": "Lindani Phiri",
"license": "MIT",
"bugs": {
"url": "https://github.com/projectatomic/dockerfile_lint/issues"
},
"dependencies": {
"commander": "~2.9.0",
"dockerode": "^2.2.9",
"js-yaml": "~3.13.1",
"junit-report-builder": "^2.1.0",
"lodash": "^2.4.2",
"winston": "^2.4.5"
},
"devDependencies": {
"fast-xml-parser": "^3.17.4",
"mocha": "~2.0.1",
"pre-commit": "^1.1.2",
"should": "~4.1.0"
}
}