package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. "cli",
  21. "monitor",
  22. "monitor",
  23. "development",
  24. "restart",
  25. "autoload",
  26. "reload",
  27. "terminal"
  28. ],
  29. "license": "MIT",
  30. "main": "./lib/nodemon",
  31. "scripts": {
  32. "commitmsg": "commitlint -e",
  33. "coverage": "istanbul cover _mocha -- --timeout 30000 --ui bdd --reporter list test/**/*.test.js",
  34. "lint": "eslint lib/**/*.js",
  35. ":spec": "node_modules/.bin/mocha --timeout 30000 --ui bdd test/**/*.test.js",
  36. "test": "npm run lint && npm run spec",
  37. "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",
  38. "postspec": "npm run clean",
  39. "clean": "rm -rf test/fixtures/test*.js test/fixtures/test*.md",
  40. "web": "node web",
  41. "semantic-release": "semantic-release",
  42. "prepush": "npm run lint",
  43. "killall": "ps auxww | grep node | grep -v grep | awk '{ print $2 }' | xargs kill -9",
  44. "postinstall": "node bin/postinstall || exit 0"
  45. },
  46. "devDependencies": {
  47. "@commitlint/cli": "^11.0.0",
  48. "@commitlint/config-conventional": "^11.0.0",
  49. "async": "1.4.2",
  50. "coffee-script": "~1.7.1",
  51. "eslint": "^7.32.0",
  52. "husky": "^7.0.4",
  53. "mocha": "^2.5.3",
  54. "nyc": "^15.1.0",
  55. "proxyquire": "^1.8.0",
  56. "semantic-release": "^18.0.0",
  57. "should": "~4.0.0"
  58. },
  59. "dependencies": {
  60. "chokidar": "^3.5.2",
  61. "debug": "^3.2.7",
  62. "ignore-by-default": "^1.0.1",
  63. "minimatch": "^3.0.4",
  64. "pstree.remy": "^1.1.8",
  65. "semver": "^5.7.1",
  66. "supports-color": "^5.5.0",
  67. "touch": "^3.1.0",
  68. "undefsafe": "^2.0.5",
  69. "update-notifier": "^5.1.0"
  70. },
  71. "version": "2.0.18",
  72. "funding": {
  73. "type": "opencollective",
  74. "url": "https://opencollective.com/nodemon"
  75. }
  76. }