{
  "name": "windows-process-manager-2",
  "author": "Randell Hart (irandellhart@gmail.com)",
  "version": "1.0.0",
  "keywords": [
    "node",
    "native",
    "addon",
    "c",
    "c++",
    "windows",
    "gyp",
    "x64",
    "x86",
    "binary",
    "inject",
    "dll",
    "process",
    "memory",
    "thread"
  ],
  "files": [
    "binding.gyp",
    "dist",
    "src/cpp"
  ],
  "repository": "git@github.com:iRandell/windows-process-manager.git",
  "homepage": "https://github.com/iRandell/windows-process-manager",
  "bugs": {
    "url": "https://github.com/iRandell/windows-process-manager/issues"
  },
  "types": "dist/index.d.ts",
  "license": "MIT",
  "description": "Node.js native addon for working with processes on Windows",
  "main": "dist/index.js",
  "scripts": {
    "start": "npm-run-all clean:dist compile:dev",
    "build": "npm-run-all clean:dist compile:prod",
    "test": "npm-run-all build:cpp jest",
    "compile:dev": "tsc -w",
    "compile:prod": "tsc -b",
    "build:cpp": "node-gyp rebuild",
    "debug:cpp": "node-gyp rebuild --debug",
    "clean:dist": "rimraf dist",
    "jest": "jest"
  },
  "dependencies": {
    "bindings": "^1.5.0",
    "node-addon-api": "^2.0.0"
  },
  "devDependencies": {
    "@types/jest": "^25.1.3",
    "@types/node": "^13.7.4",
    "jest": "^25.1.0",
    "npm-run-all": "^4.1.5",
    "rimraf": "^3.0.2",
    "ts-jest": "^25.2.1",
    "typescript": "^3.8.2"
  },
  "peerDependencies": {
    "@types/node": ">=10.0.0"
  }
}
