package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "egg-development",
  3. "version": "2.7.0",
  4. "description": "development tool for egg",
  5. "eggPlugin": {
  6. "name": "development",
  7. "env": [
  8. "local"
  9. ],
  10. "dependencies": [
  11. "watcher"
  12. ]
  13. },
  14. "keywords": [
  15. "egg",
  16. "plugin",
  17. "egg-plugin",
  18. "eggPlugin"
  19. ],
  20. "dependencies": {
  21. "debounce": "^1.1.0",
  22. "multimatch": "^2.1.0",
  23. "mz": "^2.7.0",
  24. "mz-modules": "^2.1.0",
  25. "utility": "^1.13.1"
  26. },
  27. "devDependencies": {
  28. "autod": "^3.0.1",
  29. "egg": "^2.3.0",
  30. "egg-bin": "^4.3.7",
  31. "egg-ci": "^1.8.0",
  32. "egg-mock": "^3.14.0",
  33. "eslint": "^4.17.0",
  34. "eslint-config-egg": "^7.0.0",
  35. "mz": "^2.7.0",
  36. "mz-modules": "^2.0.0",
  37. "supertest": "^3.4.2"
  38. },
  39. "engines": {
  40. "node": ">=8.0.0"
  41. },
  42. "scripts": {
  43. "test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
  44. "test-local": "egg-bin test",
  45. "cov": "egg-bin cov",
  46. "lint": "eslint .",
  47. "ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
  48. "autod": "autod"
  49. },
  50. "ci": {
  51. "version": "8, 10, 12",
  52. "type": "travis, github"
  53. },
  54. "repository": {
  55. "type": "git",
  56. "url": "git+https://github.com/eggjs/egg-development.git"
  57. },
  58. "files": [
  59. "app",
  60. "config",
  61. "lib",
  62. "agent.js",
  63. "app.js"
  64. ],
  65. "bugs": "https://github.com/eggjs/egg/issues",
  66. "homepage": "https://github.com/eggjs/egg-development#readme",
  67. "author": "jtyjty99999",
  68. "license": "MIT"
  69. }