package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "nodemon",
  3. "homepage": "http://nodemon.io",
  4. "author": {
  5. "name": "Remy Sharp",
  6. "url": "http://github.com/remy"
  7. },
  8. "bin": {
  9. "nodemon": "./bin/nodemon.js"
  10. },
  11. "engines": {
  12. "node": ">=0.8"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/remy/nodemon.git"
  17. },
  18. "description": "Simple monitor script for use during development of a node.js app.",
  19. "keywords": [
  20. "monitor",
  21. "development",
  22. "restart",
  23. "autoload",
  24. "reload",
  25. "terminal"
  26. ],
  27. "preferGlobal": "true",
  28. "license": "MIT",
  29. "main": "./lib/nodemon",
  30. "scripts": {
  31. "coverage": "istanbul cover _mocha -- --timeout 30000 --ui bdd --reporter list test/**/*.test.js",
  32. "lint": "jscs lib/**/*.js -v",
  33. ":spec": "mocha --timeout 30000 --ui bdd test/**/*.test.js",
  34. "test": "npm run lint && npm run spec",
  35. "spec": "for FILE in test/**/*.test.js; do echo $FILE; ./node_modules/.bin/mocha --timeout 30000 $FILE; if [ $? -ne 0 ]; then exit 1; fi; sleep 1; done",
  36. "web": "node web",
  37. "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  38. },
  39. "devDependencies": {
  40. "async": "1.4.2",
  41. "coffee-script": "~1.7.1",
  42. "connect": "~2.19.1",
  43. "istanbul": "~0.2.10",
  44. "jscs": "2.1.1",
  45. "mocha": "2.3.3",
  46. "should": "~4.0.0",
  47. "semantic-release": "4.3.5"
  48. },
  49. "dependencies": {
  50. "chokidar": "1.1.0",
  51. "debug": "2.2.0",
  52. "es6-promise": "3.0.2",
  53. "lodash.defaults": "3.1.2",
  54. "minimatch": "~0.3.0",
  55. "ps-tree": "~0.0.3",
  56. "touch": "1.0.0",
  57. "undefsafe": "0.0.3",
  58. "update-notifier": "0.5.0"
  59. },
  60. "version": "1.7.1",
  61. "gitHead": "c606ad507d76cc4cf98f35543b5ffed74a58e371",
  62. "bugs": {
  63. "url": "https://github.com/remy/nodemon/issues"
  64. },
  65. "_id": "nodemon@1.7.1",
  66. "_shasum": "922633a03b6835c2c29013883be4c7b4fc5f24e4",
  67. "_from": "nodemon@*",
  68. "_npmVersion": "2.14.6",
  69. "_nodeVersion": "4.1.1",
  70. "_npmUser": {
  71. "name": "remy",
  72. "email": "remy@leftlogic.com"
  73. },
  74. "dist": {
  75. "shasum": "922633a03b6835c2c29013883be4c7b4fc5f24e4",
  76. "tarball": "http://registry.npmjs.org/nodemon/-/nodemon-1.7.1.tgz"
  77. },
  78. "maintainers": [
  79. {
  80. "name": "remy",
  81. "email": "remy@remysharp.com"
  82. }
  83. ],
  84. "directories": {},
  85. "_resolved": "https://registry.npmjs.org/nodemon/-/nodemon-1.7.1.tgz"
  86. }