-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
{
"name": "dockerfile-utils",
"description": "Utilities for formatting and linting a Dockerfile.",
"keywords": [
"docker",
"dockerfile",
"moby",
"lint",
"linter",
"validate",
"validator",
"check",
"format",
"formatter"
],
"version": "0.16.1",
"author": "Remy Suen",
"license": "MIT",
"bugs": "https://github.com/rcjsuen/dockerfile-utils/",
"repository": {
"type": "git",
"url": "https://github.com/rcjsuen/dockerfile-utils.git"
},
"engines": {
"node": "*"
},
"main": "./lib/main.js",
"types": "./lib/main.d.ts",
"dependencies": {
"dockerfile-ast": "0.6.1",
"vscode-languageserver-textdocument": "^1.0.8",
"vscode-languageserver-types": "^3.17.3"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^6.0.52",
"mocha": "^9.1.3",
"nyc": "^17.0.0",
"typescript": "^5.4.3"
},
"bin": {
"dockerfile-utils": "./bin/dockerfile-utils"
},
"scripts": {
"build": "tsc -p .",
"prepublish": "tsc -p ./src",
"watch": "tsc --watch -p .",
"test": "mocha out/test",
"nyc": "nyc mocha out/test",
"nyc-ci": "nyc --reporter=lcov mocha out/test"
}
}