{
  "name": "promake-env",
  "version": "2.1.2",
  "description": "helps ensure promake rules will rerun when environment variables have changed",
  "main": "index.js",
  "sideEffects": false,
  "scripts": {
    "lint": "eslint src test/*.js --cache",
    "lint:fix": "eslint --fix src test/*.js --cache",
    "prettier": "prettier --write *.json *.md *.js '{src,test}/**/*.js'",
    "prettier:check": "prettier --list-different *.json *.md *.js '{src,test}/**/*.js'",
    "flow": "flow",
    "flow:coverage": "for file in src/**.js test/**.js; do echo $file; flow coverage $file; done",
    "clean": "rimraf es lib $(cd src; ls) *.js.flow *.d.ts",
    "build": "npm run clean && babel src --out-dir es && flow-copy-source -v src/ es && copy src/**/*.d.ts es && cross-env BABEL_ENV=es5 babel src --out-dir . && flow-copy-source -v src/ . && copy src/**/*.d.ts .",
    "test": "cross-env NODE_ENV=test BABEL_ENV=es5 mocha $npm_package_config_mocha && cross-env NODE_ENV=test BABEL_ENV=coverage nyc --reporter=lcov --reporter=text mocha $npm_package_config_mocha",
    "test:watch": "cross-env NODE_ENV=test BABEL_ENV=test mocha --watch $npm_package_config_mocha",
    "test:debug": "cross-env NODE_ENV=test BABEL_ENV=test mocha --inspect-brk $npm_package_config_mocha",
    "codecov": "nyc report --reporter=text-lcov > coverage.lcov; codecov",
    "prepublishOnly": "npm run clean && npm run prettier:check && npm run lint && flow && tsc && npm test && npm run build",
    "open:coverage": "open coverage/lcov-report/index.html",
    "semantic-release": "semantic-release"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged && npm run lint && flow && tsc",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
      "pre-push": "npm test"
    }
  },
  "lint-staged": {
    "*.{js,json,css,md,ts}": [
      "prettier --write"
    ]
  },
  "commitlint": {
    "extends": [
      "@jedwards1211/commitlint-config"
    ]
  },
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "config": {
    "mocha": "-r @babel/register test/configure.js 'test/**/*.js'",
    "prettier": "*.{json,md,js} '{src,test}/**/*.{js,ts}'",
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "nyc": {
    "include": [
      "src/**/*.js"
    ],
    "require": [
      "@babel/register"
    ],
    "sourceMap": false,
    "instrument": false
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/jcoreio/promake-env.git"
  },
  "keywords": [
    "es2015"
  ],
  "author": "Andy Edwards",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jcoreio/promake-env/issues"
  },
  "homepage": "https://github.com/jcoreio/promake-env#readme",
  "devDependencies": {
    "@babel/cli": "^7.12.10",
    "@babel/core": "^7.12.10",
    "@babel/eslint-parser": "^7.12.13",
    "@babel/node": "^7.12.13",
    "@babel/plugin-proposal-class-properties": "^7.12.1",
    "@babel/plugin-proposal-export-default-from": "^7.12.1",
    "@babel/plugin-proposal-export-namespace-from": "^7.12.1",
    "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
    "@babel/plugin-syntax-dynamic-import": "^7.8.3",
    "@babel/plugin-transform-runtime": "^7.12.10",
    "@babel/preset-env": "^7.12.11",
    "@babel/preset-flow": "^7.12.1",
    "@babel/register": "^7.12.10",
    "@commitlint/cli": "^11.0.0",
    "@commitlint/config-conventional": "^11.0.0",
    "@jedwards1211/commitlint-config": "^1.0.2",
    "@jedwards1211/eslint-config": "^2.0.2",
    "@jedwards1211/eslint-config-flow": "^3.0.0",
    "babel-eslint": "^10.1.0",
    "babel-plugin-add-module-exports": "^0.3.0",
    "babel-plugin-istanbul": "^6.0.0",
    "chai": "^4.2.0",
    "codecov": "^3.8.1",
    "copy": "^0.3.2",
    "cross-env": "^7.0.3",
    "eslint": "^7.18.0",
    "eslint-config-prettier": "^7.2.0",
    "eslint-plugin-flowtype": "^5.2.0",
    "flow-bin": "^0.143.1",
    "flow-copy-source": "https://github.com/jedwards1211/flow-copy-source#no-watch",
    "husky": "^4.3.8",
    "istanbul": "^0.4.5",
    "lint-staged": "^10.5.3",
    "mocha": "^8.2.1",
    "nyc": "^15.1.0",
    "prettier": "^2.2.1",
    "prettier-eslint": "^12.0.0",
    "promake": "^4.0.0",
    "promisify-child-process": "^1.0.0",
    "rimraf": "^3.0.2",
    "semantic-release": "^17.3.7",
    "typescript": "^4.1.3",
    "webpack": "^3.8.1"
  },
  "dependencies": {
    "@babel/runtime": "^7.12.5",
    "es6-promisify": "^5.0.0",
    "mkdirp": "^0.5.1"
  },
  "peerDependencies": {
    "promake": "^3.0.0 || ^4.0.0 || ^5.0.0"
  }
}
