{
  "name": "terraform-plan-parser",
  "version": "1.6.0",
  "description": "This module provides functionality for parsing stdout from \"terraform plan\" and converting it to JSON that can be more easily analyzed.",
  "repository": {
    "type": "git",
    "url": "https://github.com/lifeomic/terraform-plan-parser.git"
  },
  "author": "Phil Gates-Idem <phil.gates-idem@lifeomic.com>",
  "license": "MIT",
  "main": "./src/",
  "module": "./es6/src/",
  "jsnext:main": "./esnext/src/",
  "types": "./src/index.d.ts",
  "bin": {
    "parse-terraform-plan": "./src/cli.js"
  },
  "scripts": {
    "compile-src-cjs": "tsc --declaration --declarationDir ./work/dist -p tsconfig-src-cjs.json",
    "compile-src-es6": "tsc -p tsconfig-src-es6.json",
    "compile-src-esnext": "tsc -p tsconfig-src-esnext.json",
    "precompile-src": "rm -rf ./work/dist",
    "compile-src": "yarn compile-src-cjs && yarn compile-src-es6 && yarn compile-src-esnext",
    "transpile-test-js": "BABEL_ENV=test babel work/dist-test --out-dir work/dist-test --source-maps",
    "precompile-test": "rm -rf ./work/dist-test",
    "compile-test": "tsc -p tsconfig-test.json && yarn transpile-test-js",
    "postcompile-test": "cp -r test/unit/data ./work/dist-test/test/unit/",
    "lint": "tslint --format codeFrame --project tsconfig.json 'src/**/*.ts' 'test/**/*.ts'",
    "pretest": "yarn lint && yarn compile-test",
    "test": "BABEL_ENV=test nyc ava 'work/dist-test/test/**/*.test.js'",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "prebuild": "yarn test",
    "build": "yarn compile-src && ./tools/bin/postbuild",
    "publish-patch": "yarn build && ./tools/bin/publish patch",
    "publish-minor": "yarn build && ./tools/bin/publish minor",
    "publish-major": "yarn build && ./tools/bin/publish major"
  },
  "dependencies": {
    "strip-ansi": "^5.0.0",
    "yargs": "^12.0.1"
  },
  "devDependencies": {
    "@types/node": "^10.0.7",
    "ava": "^0.25.0",
    "babel-cli": "^6.26.0",
    "babel-plugin-istanbul": "^4.1.5",
    "chalk": "^2.3.1",
    "coveralls": "^3.0.0",
    "inquirer": "^6.0.0",
    "nyc": "^12.0.1",
    "proxyquire": "^2.0.0",
    "tslint": "^5.9.1",
    "tslint-config-semistandard": "^7.0.0",
    "typescript": "^2.7.2"
  },
  "ava": {
    "require": [
      "source-map-support/register"
    ]
  },
  "nyc": {
    "sourceMap": false,
    "instrument": false
  }
}
