{
  "name": "crater-util",
  "version": "1.2.2",
  "description": "a collection of utilities used by the build scripts in [crater](https://github.com/jcoreio/crater)",
  "main": "lib/index.js",
  "scripts": {
    "lint": "eslint src test",
    "lint:fix": "eslint --fix src test",
    "lint:watch": "esw --watch src test",
    "flow": "flow",
    "flow:coverage": "for file in src/**.js test/**.js; do echo $file; flow coverage $file; done",
    "flow:watch": "flow-watch --ignore lib/ --ignore node_modules/ --watch .flowconfig --watch src/ --watch test/",
    "gen-flow-files": "flow gen-flow-files src/ --out-dir lib",
    "build": "rimraf lib && babel src --out-dir lib",
    "test": "mocha $npm_package_config_mocha",
    "coverage": "DEBUG=crater-util:kill,crater-util:kill:ps NODE_ENV=coverage nyc --reporter=lcov --reporter=text mocha $npm_package_config_mocha --include src/*.js",
    "prepublish": "npm run lint && flow && npm run coverage && npm run build",
    "postpublish": "git tag -a v$npm_package_version -m v$npm_package_version && git push origin v$npm_package_version"
  },
  "config": {
    "mocha": "--compilers js:babel-core/register ./test/*.js"
  },
  "nyc": {
    "include": [
      "src/**/*.js"
    ],
    "require": [
      "babel-register"
    ],
    "sourceMap": false,
    "instrument": false
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jedwards1211/crater-util.git"
  },
  "keywords": [
    "es2015"
  ],
  "author": "Andy Edwards",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jedwards1211/crater-util/issues"
  },
  "homepage": "https://github.com/jedwards1211/crater-util#readme",
  "devDependencies": {
    "babel-cli": "^6.16.0",
    "babel-core": "^6.17.0",
    "babel-eslint": "^7.0.0",
    "babel-plugin-istanbul": "^2.0.1",
    "babel-plugin-transform-runtime": "^6.15.0",
    "babel-preset-es2015": "^6.16.0",
    "babel-preset-flow": "^1.0.0",
    "babel-preset-stage-1": "^6.16.0",
    "babel-register": "^6.16.3",
    "babel-runtime": "^6.11.6",
    "chai": "^3.5.0",
    "coveralls": "^2.11.14",
    "eslint": "^3.7.0",
    "eslint-config-andy": "github:jedwards1211/eslint-config-andy#2.0.0-beta7",
    "eslint-watch": "^2.1.14",
    "flow-bin": "^0.33.0",
    "flow-watch": "^1.0.0",
    "glob": "^7.1.1",
    "istanbul": "^0.4.5",
    "mkdirp": "^0.5.1",
    "mocha": "^3.1.0",
    "nyc": "^8.3.0",
    "pre-commit": "^1.1.3",
    "rimraf": "^2.5.4"
  },
  "dependencies": {
    "async-child-process": "^1.1.1",
    "cross-spawn": "^4.0.2",
    "debug": "^2.2.0",
    "dotenv": "^2.0.0",
    "es6-promisify": "^5.0.0",
    "ps-tree": "^1.1.0"
  },
  "pre-commit": [
    "lint",
    "flow"
  ]
}
