package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "name": "egg-bin",
  3. "version": "4.20.0",
  4. "description": "egg developer tool",
  5. "main": "index.js",
  6. "bin": {
  7. "egg-bin": "bin/egg-bin.js",
  8. "mocha": "bin/mocha.js",
  9. "ets": "bin/ets.js",
  10. "c8": "bin/c8.js"
  11. },
  12. "dependencies": {
  13. "chalk": "^4.1.1",
  14. "co-mocha": "^1.2.2",
  15. "common-bin": "^2.9.0",
  16. "debug": "^4.3.1",
  17. "detect-port": "^1.3.0",
  18. "egg-ts-helper": "^1.25.9",
  19. "egg-utils": "^2.4.1",
  20. "espower-source": "^2.3.0",
  21. "globby": "^9.2.0",
  22. "inspector-proxy": "^1.2.1",
  23. "intelli-espower-loader": "^1.1.0",
  24. "jest-changed-files": "^25.5.0",
  25. "minimatch": "^3.0.4",
  26. "mocha": "^6.0.2",
  27. "mz-modules": "^2.1.0",
  28. "nyc": "^13.3.0",
  29. "c8": "^7.11.0",
  30. "power-assert": "^1.6.1",
  31. "semver": "^7.3.5",
  32. "source-map-support": "^0.5.19",
  33. "test-exclude": "^5.1.0",
  34. "ts-node": "^7",
  35. "ypkgfiles": "^1.6.0"
  36. },
  37. "devDependencies": {
  38. "@types/mocha": "^5.0.0",
  39. "autod": "^3.1.1",
  40. "babel": "^6.3.26",
  41. "babel-preset-airbnb": "^1.0.1",
  42. "babel-register": "^6.4.3",
  43. "coffee": "^5.4.0",
  44. "cpy": "^7.0.0",
  45. "cross-env": "^3.1.3",
  46. "egg": "^2.29.4",
  47. "egg-mock": "^4.1.0",
  48. "enzyme": "^2.0.0",
  49. "esbuild-register": "^2.5.0",
  50. "eslint": "^4.12.1",
  51. "eslint-config-egg": "^7.3.1",
  52. "git-contributor": "^1.0.10",
  53. "jsdom": "^8.0.1",
  54. "mm": "^3.2.0",
  55. "mz": "^2.7.0",
  56. "react": "^0.14.7",
  57. "react-addons-test-utils": "^0.14.7",
  58. "react-dom": "^0.14.7",
  59. "typescript": "^3"
  60. },
  61. "repository": {
  62. "type": "git",
  63. "url": "https://github.com/eggjs/egg-bin.git"
  64. },
  65. "bug": {
  66. "url": "https://github.com/eggjs/egg/issues"
  67. },
  68. "homepage": "https://github.com/eggjs/egg-bin",
  69. "author": "fengmk2 <fengmk2@gmail.com> (https://github.com/fengmk2)",
  70. "scripts": {
  71. "contributor": "git-contributor",
  72. "lint": "eslint .",
  73. "pkgfiles": "node bin/egg-bin.js pkgfiles",
  74. "test": "npm run lint -- --fix && npm run test-local",
  75. "test-local": "node bin/egg-bin.js test -t 3600000",
  76. "cov": "nyc -r lcov -r text-summary npm run test-local",
  77. "ci-test-only": "npm run test-local -- test/lib/cmd/cov.test.js",
  78. "ci": "npm run lint && npm run pkgfiles -- --check && npm run ci-test-only && npm run cov",
  79. "autod": "node bin/egg-bin.js autod"
  80. },
  81. "engines": {
  82. "node": ">= 6.0.0"
  83. },
  84. "publishConfig": {
  85. "tag": "latest-4"
  86. },
  87. "files": [
  88. "index.js",
  89. "lib",
  90. "bin"
  91. ],
  92. "ci": {
  93. "version": "6, 8"
  94. }
  95. }