Squashed from: - deps: Add node-inspect 1.10.1 This adds a reimplementation of the old CLI debugger (`node debug`) against the new debugger protocol (`node --inspect`). This is necessary because the old protocol won't be supported in future versions of V8. - deps: Update node-inspect to 1.10.2 Starting with 1.10.2 the test suite should pass consistently on windows. - deps: Update to node-inspect 1.10.4 PR-URL: https://github.com/nodejs/node/pull/10187 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
45 lines
929 B
JSON
45 lines
929 B
JSON
{
|
|
"name": "node-inspect",
|
|
"version": "1.10.4",
|
|
"description": "Node Inspect",
|
|
"license": "MIT",
|
|
"main": "lib/_inspect.js",
|
|
"bin": "cli.js",
|
|
"homepage": "https://github.com/buggerjs/node-inspect",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/buggerjs/node-inspect"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/buggerjs/node-inspect/issues"
|
|
},
|
|
"scripts": {
|
|
"pretest": "eslint --rulesdir=tools/eslint-rules lib test",
|
|
"test": "tap \"test/**/*.test.js\"",
|
|
"posttest": "nlm verify"
|
|
},
|
|
"nlm": {
|
|
"license": {
|
|
"files": [
|
|
"lib"
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"eslint": "^3.10.2",
|
|
"nlm": "^3.0.0",
|
|
"tap": "^7.1.2"
|
|
},
|
|
"author": {
|
|
"name": "Jan Krems",
|
|
"email": "jan.krems@gmail.com"
|
|
},
|
|
"files": [
|
|
"*.js",
|
|
"lib"
|
|
],
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org"
|
|
}
|
|
}
|