package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "_from": "nodemon",
  3. "_id": "nodemon@2.0.15",
  4. "_inBundle": false,
  5. "_integrity": "sha512-gdHMNx47Gw7b3kWxJV64NI+Q5nfl0y5DgDbiVtShiwa7Z0IZ07Ll4RLFo6AjrhzMtoEZn5PDE3/c2AbVsiCkpA==",
  6. "_location": "/nodemon",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "tag",
  10. "registry": true,
  11. "raw": "nodemon",
  12. "name": "nodemon",
  13. "escapedName": "nodemon",
  14. "rawSpec": "",
  15. "saveSpec": null,
  16. "fetchSpec": "latest"
  17. },
  18. "_requiredBy": [
  19. "#USER",
  20. "/"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.15.tgz",
  23. "_shasum": "504516ce3b43d9dc9a955ccd9ec57550a31a8d4e",
  24. "_spec": "nodemon",
  25. "_where": "C:\\Users\\Admin\\Desktop\\WORK IT\\a-level proj\\chat\\server",
  26. "author": {
  27. "name": "Remy Sharp",
  28. "url": "https://github.com/remy"
  29. },
  30. "bin": {
  31. "nodemon": "bin/nodemon.js"
  32. },
  33. "bugs": {
  34. "url": "https://github.com/remy/nodemon/issues"
  35. },
  36. "bundleDependencies": false,
  37. "dependencies": {
  38. "chokidar": "^3.5.2",
  39. "debug": "^3.2.7",
  40. "ignore-by-default": "^1.0.1",
  41. "minimatch": "^3.0.4",
  42. "pstree.remy": "^1.1.8",
  43. "semver": "^5.7.1",
  44. "supports-color": "^5.5.0",
  45. "touch": "^3.1.0",
  46. "undefsafe": "^2.0.5",
  47. "update-notifier": "^5.1.0"
  48. },
  49. "deprecated": false,
  50. "description": "Simple monitor script for use during development of a node.js app.",
  51. "devDependencies": {
  52. "@commitlint/cli": "^11.0.0",
  53. "@commitlint/config-conventional": "^11.0.0",
  54. "async": "1.4.2",
  55. "coffee-script": "~1.7.1",
  56. "eslint": "^7.32.0",
  57. "husky": "^7.0.4",
  58. "mocha": "^2.5.3",
  59. "nyc": "^15.1.0",
  60. "proxyquire": "^1.8.0",
  61. "semantic-release": "^18.0.0",
  62. "should": "~4.0.0"
  63. },
  64. "engines": {
  65. "node": ">=8.10.0"
  66. },
  67. "funding": {
  68. "type": "opencollective",
  69. "url": "https://opencollective.com/nodemon"
  70. },
  71. "homepage": "https://nodemon.io",
  72. "keywords": [
  73. "cli",
  74. "monitor",
  75. "monitor",
  76. "development",
  77. "restart",
  78. "autoload",
  79. "reload",
  80. "terminal"
  81. ],
  82. "license": "MIT",
  83. "main": "./lib/nodemon",
  84. "name": "nodemon",
  85. "repository": {
  86. "type": "git",
  87. "url": "git+https://github.com/remy/nodemon.git"
  88. },
  89. "scripts": {
  90. ":spec": "mocha --timeout 30000 --ui bdd test/**/*.test.js",
  91. "clean": "rm -rf test/fixtures/test*.js test/fixtures/test*.md",
  92. "commitmsg": "commitlint -e",
  93. "coverage": "istanbul cover _mocha -- --timeout 30000 --ui bdd --reporter list test/**/*.test.js",
  94. "killall": "ps auxww | grep node | grep -v grep | awk '{ print $2 }' | xargs kill -9",
  95. "lint": "eslint lib/**/*.js",
  96. "postinstall": "node bin/postinstall || exit 0",
  97. "postspec": "npm run clean",
  98. "prepush": "npm run lint",
  99. "semantic-release": "semantic-release",
  100. "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",
  101. "test": "npm run lint && npm run spec",
  102. "web": "node web"
  103. },
  104. "version": "2.0.15"
  105. }