45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "flagged-respawn",
|
|
"description": "A tool for respawning node binaries when special flags are present.",
|
|
"version": "1.0.0",
|
|
"homepage": "https://github.com/js-cli/js-flagged-respawn",
|
|
"author": {
|
|
"name": "Tyler Kellen",
|
|
"url": "http://goingslowly.com/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/js-cli/js-flagged-respawn.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/js-cli/js-flagged-respawn/issues"
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"lint": "jshint index.js lib/ && jscs index.js lib/",
|
|
"respawn": "node test/bin/respawner --harmony test",
|
|
"nospawn": "node test/bin/respawner test",
|
|
"test": "npm run lint && mocha -R spec test",
|
|
"cover": "nyc --reporter=lcov --reporter=text-summary npm test"
|
|
},
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.js",
|
|
"lib/"
|
|
],
|
|
"engines": {
|
|
"node": ">= 0.8.0"
|
|
},
|
|
"keywords": [
|
|
"respawn flags"
|
|
],
|
|
"devDependencies": {
|
|
"chai": "^3.5.0",
|
|
"jscs": "^3.0.7",
|
|
"jshint": "^2.9.5",
|
|
"mocha": "^3.5.3",
|
|
"nyc": "^11.3.0",
|
|
"v8flags": "^3.0.1"
|
|
}
|
|
}
|