{
  "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.1",
  "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": "^10.0.10",
    "@types/node": "^6.0.52",
    "mocha": "^11.1.0",
    "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"
  }
}