{
  "name": "npm-package-scripts",
  "version": "1.0.0",
  "description": "All the benefits of npm scripts without the cost of a bloated package.json and limits of json",
  "main": "dist/index",
  "scripts": {
    "start": "npm run localstart",
    "test": "npm run localstart test",
    "build": "rimraf dist && babel --copy-files --out-dir dist --ignore *.test.js,fixtures src",
    "localstart": "npm run build && ./dist/bin/nps.js"
  },
  "bin": {
    "nps": "./dist/bin/nps.js",
    "npm-package-scripts": "./dist/bin/nps.js"
  },
  "files": [
    "dist"
  ],
  "keywords": [],
  "author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
  "license": "MIT",
  "dependencies": {
    "arrify": "1.0.1",
    "bluebird": "3.4.6",
    "colors": "1.1.2",
    "commander": "2.9.0",
    "find-up": "1.1.2",
    "lodash": "4.14.0",
    "manage-path": "2.0.0",
    "omelette": "0.3.1",
    "prefix-matches": "0.0.9",
    "shell-escape": "0.2.0",
    "spawn-command-with-kill": "1.0.0"
  },
  "devDependencies": {
    "all-contributors-cli": "3.0.6",
    "ava": "0.15.2",
    "babel-cli": "6.11.4",
    "babel-eslint": "6.1.2",
    "babel-plugin-istanbul": "1.0.3",
    "babel-preset-es2015": "6.9.0",
    "babel-preset-stage-2": "6.11.0",
    "babel-register": "6.11.5",
    "cli-tester": "1.0.0",
    "codecov": "1.0.1",
    "commitizen": "2.8.2",
    "condition-node-version": "1.3.0",
    "cross-env": "2.0.0",
    "cz-conventional-changelog": "1.1.6",
    "eslint": "3.1.1",
    "eslint-config-kentcdodds": "8.1.3",
    "ghooks": "1.3.2",
    "nyc": "7.1.0",
    "opt-cli": "1.5.1",
    "proxyquire": "1.7.10",
    "rimraf": "2.5.4",
    "semantic-release": "4.3.5",
    "sinon": "1.17.4",
    "validate-commit-msg": "2.6.1"
  },
  "eslintConfig": {
    "extends": [
      "kentcdodds",
      "kentcdodds/ava"
    ]
  },
  "ava": {
    "require": [
      "babel-register"
    ]
  },
  "nyc": {
    "all": true,
    "sourceMap": false,
    "instrument": false,
    "check-coverage": true,
    "branches": 100,
    "functions": 100,
    "lines": 100,
    "statements": 100,
    "reporter": [
      "lcov",
      "text",
      "html"
    ],
    "include": [
      "src/**/*.js"
    ]
  },
  "release": {
    "verifyConditions": {
      "path": "condition-node-version",
      "node": "^6"
    }
  },
  "config": {
    "ghooks": {
      "commit-msg": "opt --in commit-msg --exec \"validate-commit-msg\"",
      "pre-commit": "opt --in pre-commit --exec \"npm start validate\""
    },
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/kentcdodds/nps.git"
  },
  "bugs": {
    "url": "https://github.com/kentcdodds/nps/issues"
  },
  "homepage": "https://github.com/kentcdodds/nps#readme"
}