{
  "name": "add-to-path",
  "description": "Cross-platform method to add a directory to your $PATH",
  "main": "dist/index.js",
  "scripts": {
    "prebuild": "rm -rf dist && mkdir dist",
    "build": "cd src && babel index.js get-path-var.js -d ../dist && cd ..",
    "eslint": "eslint src/index.js src/get-path-var.js -c other/src.eslintrc && eslint src/*.test.js",
    "test": "istanbul cover -x *.test.js _mocha -- -R spec src/*.test.js --compilers js:babel/register",
    "start": "mocha src/*.test.js -w . --compilers js:babel/register",
    "check-coverage": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
    "report-coverage": "echo 'Reporting coverage stats' && cat ./coverage/lcov.info | codecov",
    "commit": "git-cz",
    "prepublish": "npm run build",
    "postpublish": "publish-latest",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/kentcdodds/node-add-to-path.git"
  },
  "keywords": [
    "path",
    "cross-platform"
  ],
  "author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kentcdodds/node-add-to-path/issues"
  },
  "homepage": "https://github.com/kentcdodds/node-add-to-path#readme",
  "devDependencies": {
    "babel": "5.8.23",
    "chai": "3.2.0",
    "chai-string": "1.1.2",
    "codecov.io": "0.1.6",
    "commitizen": "1.0.4",
    "cz-conventional-changelog": "1.1.0",
    "eslint": "1.3.1",
    "eslint-config-kentcdodds": "4.0.0",
    "eslint-plugin-mocha": "0.5.1",
    "ghooks": "0.3.2",
    "istanbul": "0.3.19",
    "mocha": "2.3.2",
    "publish-latest": "1.0.2",
    "semantic-release": "^4.3.4",
    "validate-commit-msg": "1.0.0"
  },
  "config": {
    "ghooks": {
      "commit-msg": "./node_modules/.bin/validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"
    }
  },
  "czConfig": {
    "path": "node_modules/cz-conventional-changelog/"
  },
  "version": "1.1.2"
}