{
  "name": "@hankchanocd/npmlist",
  "version": "8.0.2",
  "description": "Search npm modules' dependencies.",
  "main": "./build/index.js",
  "engines": {
    "node": ">=8"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/hankchanocd/npmlist.git"
  },
  "scripts": {
    "pretest": "npm run build --silent",
    "test:unit": "npm run jest -- __test__/unit_test",
    "test": "npm-run-all jest eslint --parallel --silent",
    "test:watch": "npm run jest:watch",
    "jest": "jest --forceExit --detectOpenHandles",
    "jest:watch": "npm run jest -- --watch",
    "jest:coverage": "npm run jest -- --coverage",
    "coverage:check": "npm run jest:coverage",
    "coverage:open": "npm run coverage:check && opn ./coverage/index.html",
    "watch": "nodemon --exec npm-run-all build test:unit",
    "eslint": "eslint . --ignore-path .gitignore --cache --cache-location \"./eslint/.eslintcache\" ",
    "eslint:makeHtml": "npm run eslint -- --format html -o ./eslint/report.html",
    "eslint:open": "npm run eslint:makeHtml --silent && opn ./eslint/report.html",
    "prebuild": "rimraf ./build",
    "build": "babel src/ -d build/ --quiet",
    "build:watch": "nodemon --exec npm run build",
    "commit": "git-cz",
    "semantic-release": "semantic-release"
  },
  "keywords": [
    "npm",
    "cli",
    "list",
    "latest",
    "dependencies"
  ],
  "files": [
    "build/",
    "bin/",
    "README.md"
  ],
  "jest": {
    "collectCoverage": true,
    "coverageReporters": [
      "html"
    ]
  },
  "author": "Hank Chan <hankchanth@icloud.com> (https://github.com/hankchanocd)",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/hankchanocd/npmlist/issues"
  },
  "homepage": "https://github.com/hankchanocd/npmlist#readme",
  "dependencies": {
    "chalk": "^2.4.2",
    "cli-columns": "^3.1.2",
    "cliui": "^4.1.0",
    "columnify": "^1.5.4",
    "commander": "^2.20.0",
    "ls": "^0.2.1",
    "pkginfo": "^0.4.1"
  },
  "devDependencies": {
    "acorn": "^6.2.0",
    "babel-cli": "^6.26.0",
    "babel-plugin-transform-async-to-generator": "^6.24.1",
    "babel-preset-env": "^1.7.0",
    "commitizen": "^3.1.1",
    "cz-conventional-changelog": "^2.1.0",
    "eslint": "^5.16.0",
    "eslint-plugin-import": "^2.18.0",
    "eslint-plugin-jest": "^22.7.2",
    "eslint-plugin-promise": "^4.2.1",
    "ghooks": "^2.0.4",
    "jest": "^23.6.0",
    "nodemon": "^1.19.1",
    "npm-run-all": "^4.1.5",
    "opn-cli": "^4.1.0",
    "rimraf": "^2.6.3",
    "semantic-release": "^15.13.18"
  },
  "config": {
    "ghooks": {
      "pre-commit": "npm run test:unit",
      "pre-push": "npm run coverage:check  # Include Jest's coverage report"
    },
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  }
}
