package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "egg-view",
  3. "version": "2.1.3",
  4. "description": "Base view plugin for egg",
  5. "eggPlugin": {
  6. "name": "view"
  7. },
  8. "keywords": [
  9. "egg",
  10. "eggPlugin",
  11. "egg-plugin",
  12. "egg-view",
  13. "view"
  14. ],
  15. "dependencies": {
  16. "mz": "^2.7.0"
  17. },
  18. "devDependencies": {
  19. "@types/node": "^10.12.18",
  20. "autod": "^2.10.1",
  21. "coffee": "^5.2.0",
  22. "egg": "^2.14.2",
  23. "egg-bin": "^4.3.5",
  24. "egg-ci": "^1.11.0",
  25. "egg-mock": "^3.13.1",
  26. "eslint": "^4.10.0",
  27. "eslint-config-egg": "^5.1.1",
  28. "mz-modules": "^1.0.0",
  29. "typescript": "^3.2.2",
  30. "webstorm-disable-index": "^1.2.0"
  31. },
  32. "engines": {
  33. "node": ">=8.0.0"
  34. },
  35. "scripts": {
  36. "autod": "autod",
  37. "test": "npm run lint -- --fix && npm run test-local",
  38. "test-local": "egg-bin test",
  39. "cov": "egg-bin cov",
  40. "lint": "eslint .",
  41. "ci": "npm run lint && npm run cov",
  42. "pkgfiles": "egg-bin pkgfiles"
  43. },
  44. "files": [
  45. "app",
  46. "lib",
  47. "index.d.ts",
  48. "config"
  49. ],
  50. "types": "index.d.ts",
  51. "ci": {
  52. "version": "8, 10, 11"
  53. },
  54. "repository": {
  55. "type": "git",
  56. "url": "git+https://github.com/eggjs/egg-view.git"
  57. },
  58. "bugs": {
  59. "url": "https://github.com/eggjs/egg/issues"
  60. },
  61. "homepage": "https://github.com/eggjs/egg-view#readme",
  62. "author": "popomore <sakura9515@gmail.com>",
  63. "license": "MIT"
  64. }