wallet-core/node_modules/flagged-respawn/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2016-10-10 03:43:44 +02:00
{
2016-11-03 01:33:53 +01:00
"name": "flagged-respawn",
"description": "A tool for respawning node binaries when special flags are present.",
2018-09-20 02:56:13 +02:00
"version": "1.0.0",
2016-11-03 01:33:53 +01:00
"homepage": "https://github.com/js-cli/js-flagged-respawn",
2016-10-10 03:43:44 +02:00
"author": {
"name": "Tyler Kellen",
"url": "http://goingslowly.com/"
},
2016-11-03 01:33:53 +01:00
"repository": {
"type": "git",
"url": "git://github.com/js-cli/js-flagged-respawn.git"
},
2016-10-10 03:43:44 +02:00
"bugs": {
"url": "https://github.com/js-cli/js-flagged-respawn/issues"
},
2018-09-20 02:56:13 +02:00
"license": "MIT",
2016-10-10 03:43:44 +02:00
"scripts": {
2018-09-20 02:56:13 +02:00
"lint": "jshint index.js lib/ && jscs index.js lib/",
2016-10-10 03:43:44 +02:00
"respawn": "node test/bin/respawner --harmony test",
2016-11-03 01:33:53 +01:00
"nospawn": "node test/bin/respawner test",
2018-09-20 02:56:13 +02:00
"test": "npm run lint && mocha -R spec test",
"cover": "nyc --reporter=lcov --reporter=text-summary npm test"
2016-10-10 03:43:44 +02:00
},
2016-11-03 01:33:53 +01:00
"main": "index.js",
2018-09-20 02:56:13 +02:00
"files": [
"index.js",
"lib/"
],
2016-11-03 01:33:53 +01:00
"engines": {
"node": ">= 0.8.0"
},
"keywords": [
"respawn flags"
],
"devDependencies": {
2018-09-20 02:56:13 +02:00
"chai": "^3.5.0",
"jscs": "^3.0.7",
"jshint": "^2.9.5",
"mocha": "^3.5.3",
"nyc": "^11.3.0",
"v8flags": "^3.0.1"
2016-11-03 01:33:53 +01:00
}
2016-10-10 03:43:44 +02:00
}