0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/node-inspect/package.json
Jan Krems e11447a08b
deps: Upgrade node-inspect to 1.11.5
Removes the prompt to report a bug when trying to launch the
debugger using a port that is already in use.

Changeset generated via:

```
rm -rf deps/node-inspect node-inspect-* && \
  curl -sSL "https://github.com/nodejs/node-inspect/archive/v1.11.5.tar.gz" | \
  tar -xzvf - && mv node-inspect-* deps/node-inspect
```

PR-URL: https://github.com/nodejs/node/pull/21055
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2018-06-14 18:46:01 +02:00

46 lines
907 B
JSON

{
"name": "node-inspect",
"version": "1.11.5",
"description": "Node Inspect",
"license": "MIT",
"main": "lib/_inspect.js",
"bin": "cli.js",
"homepage": "https://github.com/nodejs/node-inspect",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/nodejs/node-inspect"
},
"bugs": {
"url": "https://github.com/nodejs/node-inspect/issues"
},
"scripts": {
"pretest": "eslint --rulesdir=tools/eslint-rules lib test",
"test": "tap test",
"posttest": "nlm verify"
},
"nlm": {
"license": {
"files": [
"lib"
]
}
},
"dependencies": {},
"devDependencies": {
"eslint": "^3.10.2",
"nlm": "^3.0.0",
"tap": "^10.7.0"
},
"author": {
"name": "Jan Krems",
"email": "jan.krems@gmail.com"
},
"files": [
"*.js",
"lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}