{
  "name": "terminate",
  "version": "2.8.0",
  "description": "Terminate a Node.js Process based on the Process ID",
  "main": "terminate.js",
  "types": "index.d.ts",
  "files": [
    "test/**",
    "*.js",
    "*.ts",
    "*.json"
  ],
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "default": "./terminate.js"
    },
    "./promise": {
      "types": "./promise.d.ts",
      "default": "./promise.js"
    }
  },
  "scripts": {
    "test": "nyc --report=lcov --report=text ./node_modules/tape/bin/tape ./test/*.js",
    "precoverage": "npm test",
    "coverage": "nyc check-coverage",
    "jshint": "./node_modules/jshint/bin/jshint -c .jshintrc --exclude-path .gitignore .",
    "lint": "node_modules/.bin/goodparts terminate.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/dwyl/terminate.git"
  },
  "keywords": [
    "Terminate",
    "Kill",
    "Node",
    "Child",
    "Process"
  ],
  "author": "@nelsonic <contact.nelsonic@gmail.com> (https://github.com/nelsonic)",
  "license": "GPL-2.0",
  "bugs": {
    "url": "https://github.com/dwyl/terminate/issues"
  },
  "homepage": "https://github.com/dwyl/terminate",
  "dependencies": {
    "ps-tree": "^1.2.0"
  },
  "devDependencies": {
    "cli-color": "^2.0.3",
    "goodparts": "1.3.0",
    "jshint": "^2.9.6",
    "nyc": "^17.0.0",
    "pre-commit": "1.2.2",
    "tape": "^5.7.3"
  },
  "pre-commit": [
    "jshint",
    "coverage"
  ],
  "engines": {
    "node": ">=12"
  }
}
