UNPKG

1.15 kBJSONView Raw
1{
2 "name": "dockerfile-ast",
3 "description": "Parse a Dockerfile into an array of instructions and comments.",
4 "keywords": [
5 "ast",
6 "abstract",
7 "docker",
8 "dockerfile",
9 "moby",
10 "parse",
11 "parser",
12 "syntax",
13 "tree"
14 ],
15 "version": "0.3.4",
16 "author": "Remy Suen",
17 "license": "MIT",
18 "bugs": "https://github.com/rcjsuen/dockerfile-ast/",
19 "repository": {
20 "type": "git",
21 "url": "https://github.com/rcjsuen/dockerfile-ast.git"
22 },
23 "engines": {
24 "node": "*"
25 },
26 "main": "lib/main.js",
27 "typings": "./lib/main",
28 "dependencies": {
29 "vscode-languageserver-textdocument": "^1.0.1",
30 "vscode-languageserver-types": "^3.17.0-next.3"
31 },
32 "devDependencies": {
33 "@types/mocha": "^7.0.2",
34 "@types/node": "^6.0.52",
35 "mocha": "^7.0.2",
36 "nyc": "^15.0.0",
37 "typescript": "~3.7.3"
38 },
39 "scripts": {
40 "build": "tsc -p .",
41 "prepublish": "tsc -p ./src",
42 "watch": "tsc --watch -p .",
43 "test": "mocha out/test out/test/instructions",
44 "nyc": "nyc mocha out/test out/test/instructions",
45 "nyc-ci": "nyc --reporter=lcov mocha out/test out/test/instructions"
46 }
47}