-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
46 lines (46 loc) · 1.11 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
{
"name": "dockerfilelint",
"version": "1.8.0",
"description": "A linter for Dockerfiles to find bugs and encourage best practices",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"dockerfilelint": "bin/dockerfilelint"
},
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/replicatedhq/dockerfilelint.git"
},
"keywords": [
"dockerfile",
"lint",
"linter"
],
"author": "Marc Campbell",
"license": "MIT",
"bugs": {
"url": "https://github.com/replicatedhq/dockerfilelint/issues"
},
"homepage": "https://github.com/replicatedhq/dockerfilelint#readme",
"dependencies": {
"chalk": "^2.4.2",
"cliui": "^4.1.0",
"js-yaml": "^3.6.0",
"lodash": "^4.3.0",
"yargs": "^13.2.1"
},
"devDependencies": {
"chai": "^4.0.1",
"coveralls": "^3.0.3",
"eslint": "^5.15.1",
"eslint-config-defaults": "^9.0.0",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"standard-version": "^5.0.1"
}
}