{
  "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.3",
  "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.7.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": "^11.7.1",
    "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"
  }
}
