mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
923 B
45 lines
923 B
{
|
|
"name": "node-inspect",
|
|
"version": "1.10.6",
|
|
"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/**/*.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"
|
|
}
|
|
}
|
|
|