node/deps/node-inspect/package.json
Jan Krems 6961c7f804
deps: update node-inspect to v2.0.0
Highlights:

* Remove use of `process.binding` on modern node (@addaleax)
* Increase timeout for port checking (@yilmazdurmaz)
* Auto-resume on start when `NODE_INSPECT_RESUME_ON_START`
  is set (@dolsem)

Compare: https://github.com/nodejs/node-inspect/compare/v1.11.6...v2.0.0

PR-URL: https://github.com/nodejs/node/pull/33447
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Matheus Marchini <mat@mmarchini.me>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2020-05-20 12:36:34 +02:00

45 lines
905 B
JSON

{
"name": "node-inspect",
"version": "2.0.0",
"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": "^6.8.0",
"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"
}
}