Files
archived-nodemon/package.json
Remy Sharp 7197107eed Moved coverage to it's own npm command
Because Travis can sometimes bitch about Istanbul: https://travis-ci.org/remy/nodemon/jobs/15225801
2013-12-10 14:01:16 +00:00

49 lines
1.1 KiB
JSON

{
"name": "nodemon",
"homepage": "http://github.com/remy/nodemon",
"author": {
"name": "Remy Sharp",
"url": "http://github.com/remy"
},
"bin": {
"nodemon": "./bin/nodemon.js"
},
"repository": {
"type": "git",
"url": "http://github.com/remy/nodemon.git"
},
"description": "Simple monitor script for use during development of a node.js app.",
"keywords": [
"monitor",
"development",
"restart",
"autoload",
"reload",
"terminal"
],
"version": "0.9.14",
"preferGlobal": "true",
"licenses": [
{
"type": "MIT",
"url": "http://rem.mit-license.org"
}
],
":main": "./lib/nodemon",
"main": "./test/fixtures/app.js",
"scripts": {
"coverage": "istanbul cover _mocha -- --timeout 15000 --ui bdd --reporter list test/**/*.test.js",
"test": "node_modules/mocha/bin/_mocha --timeout 15000 --ui bdd --reporter list test/**/*.test.js"
},
"devDependencies": {
"connect": "*",
"mocha": "~1.12.0",
"should": "~1.2.2",
"istanbul": "~0.1.44",
"touch": "0.0.2"
},
"dependencies": {
"update-notifier": "~0.1.5"
}
}