package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "_from": "nodemon@^2.0.7",
  3. "_id": "nodemon@2.0.7",
  4. "_inBundle": false,
  5. "_integrity": "sha512-XHzK69Awgnec9UzHr1kc8EomQh4sjTQ8oRf8TsGrSmHDx9/UmiGG9E/mM3BuTfNeFwdNBvrqQq/RHL0xIeyFOA==",
  6. "_location": "/nodemon",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "nodemon@^2.0.7",
  12. "name": "nodemon",
  13. "escapedName": "nodemon",
  14. "rawSpec": "^2.0.7",
  15. "saveSpec": null,
  16. "fetchSpec": "^2.0.7"
  17. },
  18. "_requiredBy": [
  19. "#DEV:/",
  20. "#USER"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.7.tgz",
  23. "_shasum": "6f030a0a0ebe3ea1ba2a38f71bf9bab4841ced32",
  24. "_spec": "nodemon@^2.0.7",
  25. "_where": "/home/pvvvm505/Документы/sbox/back",
  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.2.2",
  39. "debug": "^3.2.6",
  40. "ignore-by-default": "^1.0.1",
  41. "minimatch": "^3.0.4",
  42. "pstree.remy": "^1.1.7",
  43. "semver": "^5.7.1",
  44. "supports-color": "^5.5.0",
  45. "touch": "^3.1.0",
  46. "undefsafe": "^2.0.3",
  47. "update-notifier": "^4.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.11.0",
  57. "husky": "^0.14.3",
  58. "istanbul": "^0.4.5",
  59. "mocha": "^2.5.3",
  60. "proxyquire": "^1.8.0",
  61. "semantic-release": "^8.2.3",
  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. "monitor",
  74. "development",
  75. "restart",
  76. "autoload",
  77. "reload",
  78. "terminal"
  79. ],
  80. "license": "MIT",
  81. "main": "./lib/nodemon",
  82. "name": "nodemon",
  83. "repository": {
  84. "type": "git",
  85. "url": "git+https://github.com/remy/nodemon.git"
  86. },
  87. "scripts": {
  88. ":spec": "mocha --timeout 30000 --ui bdd test/**/*.test.js",
  89. "clean": "rm -rf test/fixtures/test*.js test/fixtures/test*.md",
  90. "commitmsg": "commitlint -e",
  91. "coverage": "istanbul cover _mocha -- --timeout 30000 --ui bdd --reporter list test/**/*.test.js",
  92. "killall": "ps auxww | grep node | grep -v grep | awk '{ print $2 }' | xargs kill -9",
  93. "lint": "eslint lib/**/*.js",
  94. "postinstall": "node bin/postinstall || exit 0",
  95. "postspec": "npm run clean",
  96. "prepush": "npm run lint",
  97. "semantic-release": "semantic-release pre && npm publish && semantic-release post",
  98. "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",
  99. "test": "npm run lint && npm run spec",
  100. "web": "node web"
  101. },
  102. "version": "2.0.7"
  103. }