-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
53 lines (53 loc) · 1.13 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
{
"name": "dockerlint",
"version": "0.3.11",
"description": "Linting for Dockerfiles",
"main": "bin/dockerlint",
"bin": {
"dockerlint": "bin/dockerlint.js"
},
"config": {
"make": "make",
"winmake": "mingw32-make.exe"
},
"scripts": {
"build": "make js",
"test": "make test",
"build:win": "%npm_package_config_winmake% js",
"test:win": "%npm_package_config_winmake% test"
},
"author": {
"name": "RedCoolBeans",
"email": "info@redcoolbeans.com",
"url": "http://www.redcoolbeans.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/redcoolbeans/dockerlint.git"
},
"homepage": "https://github.com/redcoolbeans/dockerlint",
"bugs": {
"url": "https://github.com/redcoolbeans/dockerlint/issues"
},
"keywords": [
"docker",
"dockerfile",
"lint",
"validate"
],
"dependencies": {
"sty": "^0.6.1",
"subarg": "^1.0.0"
},
"devDependencies": {
"chai": "^2.1.2",
"coffee-script": "^1.9.0",
"mocha": "^2.2.1",
"should": "^5.2.0"
},
"engines": {
"node": ">= 0.10.0",
"coffee-script": ">= 1.0.1"
}
}