forked from amitsaha/dockerfile_lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 856 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
{
"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",
"lodash": "^2.4.2",
"winston": "^2.1.1"
},
"devDependencies": {
"mocha": "~2.0.1",
"pre-commit": "^1.1.2",
"should": "~4.1.0"
}
}