package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "nodemon",
  3. "homepage": "https://nodemon.io",
  4. "author": {
  5. "name": "Remy Sharp",
  6. "url": "https://github.com/remy"
  7. },
  8. "bin": {
  9. "nodemon": "./bin/nodemon.js"
  10. },
  11. "engines": {
  12. "node": ">=8.10.0"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "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. "license": "MIT",
  28. "main": "./lib/nodemon",
  29. "scripts": {
  30. "commitmsg": "commitlint -e",
  31. "coverage": "istanbul cover _mocha -- --timeout 30000 --ui bdd --reporter list test/**/*.test.js",
  32. "lint": "eslint lib/**/*.js",
  33. ":spec": "node_modules/.bin/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; TEST=1 mocha --exit --timeout 30000 $FILE; if [ $? -ne 0 ]; then exit 1; fi; sleep 1; done",
  36. "postspec": "npm run clean",
  37. "clean": "rm -rf test/fixtures/test*.js test/fixtures/test*.md",
  38. "web": "node web",
  39. "semantic-release": "semantic-release",
  40. "prepush": "npm run lint",
  41. "killall": "ps auxww | grep node | grep -v grep | awk '{ print $2 }' | xargs kill -9",
  42. "postinstall": "node bin/postinstall || exit 0"
  43. },
  44. "devDependencies": {
  45. "@commitlint/cli": "^11.0.0",
  46. "@commitlint/config-conventional": "^11.0.0",
  47. "async": "1.4.2",
  48. "coffee-script": "~1.7.1",
  49. "eslint": "^7.11.0",
  50. "husky": "^0.14.3",
  51. "istanbul": "^0.4.5",
  52. "mocha": "^2.5.3",
  53. "proxyquire": "^1.8.0",
  54. "semantic-release": "^17.4.4",
  55. "should": "~4.0.0"
  56. },
  57. "dependencies": {
  58. "chokidar": "^3.2.2",
  59. "debug": "^3.2.6",
  60. "ignore-by-default": "^1.0.1",
  61. "minimatch": "^3.0.4",
  62. "pstree.remy": "^1.1.7",
  63. "semver": "^5.7.1",
  64. "supports-color": "^5.5.0",
  65. "touch": "^3.1.0",
  66. "undefsafe": "^2.0.3",
  67. "update-notifier": "^4.1.0"
  68. },
  69. "version": "2.0.12",
  70. "funding": {
  71. "type": "opencollective",
  72. "url": "https://opencollective.com/nodemon"
  73. }
  74. }