package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "egg-static",
  3. "version": "2.2.0",
  4. "description": "static server plugin for egg",
  5. "eggPlugin": {
  6. "name": "static"
  7. },
  8. "files": [
  9. "app",
  10. "config",
  11. "app.js"
  12. ],
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/eggjs/egg-static.git"
  16. },
  17. "keywords": [
  18. "egg",
  19. "egg-plugin",
  20. "eggPlugin",
  21. "static"
  22. ],
  23. "dependencies": {
  24. "is-type-of": "^1.2.1",
  25. "koa-compose": "^4.1.0",
  26. "koa-range": "^0.3.0",
  27. "koa-static-cache": "^5.1.2",
  28. "mkdirp": "^0.5.1",
  29. "ylru": "^1.2.1"
  30. },
  31. "devDependencies": {
  32. "autod": "^3.0.1",
  33. "egg": "^2.16.0",
  34. "egg-bin": "^4.11.0",
  35. "egg-ci": "^1.11.0",
  36. "egg-mock": "^3.21.0",
  37. "eslint": "^5.13.0",
  38. "eslint-config-egg": "^7.1.0",
  39. "mz": "^2.7.0"
  40. },
  41. "engines": {
  42. "node": ">=8.0.0"
  43. },
  44. "scripts": {
  45. "lint": "eslint .",
  46. "test": "npm run lint -- --fix && npm run test-local",
  47. "test-local": "egg-bin test",
  48. "cov": "egg-bin cov",
  49. "ci": "npm run lint && npm run cov",
  50. "autod": "autod"
  51. },
  52. "ci": {
  53. "version": "8, 9",
  54. "license": true
  55. },
  56. "author": "dead_horse",
  57. "license": "MIT"
  58. }