mirror of
https://github.com/SrIzan10/nodemon.git
synced 2026-05-01 10:55:09 +00:00
67 lines
2.1 KiB
JSON
67 lines
2.1 KiB
JSON
{
|
|
"name": "nodemon",
|
|
"homepage": "http://nodemon.io",
|
|
"author": {
|
|
"name": "Remy Sharp",
|
|
"url": "http://github.com/remy"
|
|
},
|
|
"bin": {
|
|
"nodemon": "./bin/nodemon.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://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"
|
|
],
|
|
"license": "MIT",
|
|
"main": "./lib/nodemon",
|
|
"scripts": {
|
|
"commitmsg": "commitlint -e",
|
|
"coverage": "istanbul cover _mocha -- --timeout 30000 --ui bdd --reporter list test/**/*.test.js",
|
|
"lint": "jscs lib/**/*.js -v",
|
|
":spec": "node_modules/.bin/mocha --timeout 30000 --ui bdd test/**/*.test.js",
|
|
"test": "npm run lint && npm run spec",
|
|
"spec": "for FILE in test/**/*.test.js; do echo $FILE; TEST=1 mocha --exit --timeout 30000 $FILE; if [ $? -ne 0 ]; then exit 1; fi; sleep 1; done",
|
|
"postspec": "npm run clean",
|
|
"clean": "rm -rf test/fixtures/test*.js test/fixtures/test*.md",
|
|
"web": "node web",
|
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
|
"prepush": "npm run lint",
|
|
"postinstall": "node -e \"console.log('\\u001b[32mLove nodemon? You can now support the project via the open collective:\\u001b[22m\\u001b[39m\\n > \\u001b[96m\\u001b[1mhttps://opencollective.com/nodemon/donate\\u001b[0m\\n')\""
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^3.1.3",
|
|
"@commitlint/config-angular": "^3.1.1",
|
|
"async": "1.4.2",
|
|
"coffee-script": "~1.7.1",
|
|
"husky": "^0.14.3",
|
|
"istanbul": "^0.4.5",
|
|
"jscs": "^3.0.7",
|
|
"mocha": "^2.3.3",
|
|
"semantic-release": "^8.2.0",
|
|
"should": "~4.0.0"
|
|
},
|
|
"dependencies": {
|
|
"chokidar": "^1.7.0",
|
|
"debug": "^2.6.8",
|
|
"ignore-by-default": "^1.0.1",
|
|
"minimatch": "^3.0.4",
|
|
"pstree.remy": "^1.1.0",
|
|
"touch": "^3.1.0",
|
|
"undefsafe": "0.0.3",
|
|
"update-notifier": "^2.3.0"
|
|
},
|
|
"version": "0.0.0-development"
|
|
}
|