package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "egg-i18n",
  3. "version": "2.1.1",
  4. "eggPlugin": {
  5. "name": "i18n"
  6. },
  7. "description": "i18n plugin for egg",
  8. "main": "index.js",
  9. "scripts": {
  10. "lint": "eslint lib test *.js",
  11. "test": "npm run lint && egg-bin test",
  12. "cov": "egg-bin cov",
  13. "ci": "npm run lint && npm run cov",
  14. "autod": "autod"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/eggjs/egg-i18n.git"
  19. },
  20. "keywords": [
  21. "egg",
  22. "i18n"
  23. ],
  24. "author": "gxcsoccer <gxcsoccer@126.com>",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/eggjs/egg-i18n/issues"
  28. },
  29. "homepage": "https://github.com/eggjs/egg-i18n#readme",
  30. "engines": {
  31. "node": ">= 8.0.0"
  32. },
  33. "files": [
  34. "app",
  35. "config",
  36. "app.js"
  37. ],
  38. "ci": {
  39. "version": "8, 10, 12"
  40. },
  41. "dependencies": {
  42. "debug": "^3.1.0",
  43. "koa-locales": "^1.11.0"
  44. },
  45. "devDependencies": {
  46. "autod": "^2.10.1",
  47. "egg": "^2.21.1",
  48. "egg-bin": "^4.3.5",
  49. "egg-ci": "^1.8.0",
  50. "egg-mock": "^3.13.1",
  51. "egg-view-nunjucks": "^2.1.4",
  52. "eslint": "^4.10.0",
  53. "eslint-config-egg": "^5.1.1",
  54. "pedding": "^1.1.0"
  55. }
  56. }