-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "dockerfile-ast",
"description": "Parse a Dockerfile into an array of instructions and comments.",
"keywords": [
"ast",
"abstract",
"docker",
"dockerfile",
"moby",
"parse",
"parser",
"syntax",
"tree"
],
"version": "0.7.0",
"author": "Remy Suen",
"license": "MIT",
"bugs": "https://github.com/rcjsuen/dockerfile-ast/",
"repository": {
"type": "git",
"url": "https://github.com/rcjsuen/dockerfile-ast.git"
},
"engines": {
"node": "*"
},
"main": "lib/main.js",
"typings": "./lib/main",
"dependencies": {
"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.1.0",
"typescript": "^5.2.2"
},
"scripts": {
"build": "tsc -p .",
"prepublish": "tsc -p ./src",
"watch": "tsc --watch -p .",
"test": "mocha out/test out/test/instructions",
"nyc": "nyc mocha out/test out/test/instructions",
"nyc-ci": "nyc --reporter=lcov mocha out/test out/test/instructions"
}
}