package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "koa-locales",
  3. "version": "1.12.0",
  4. "description": "koa locales, i18n solution for koa",
  5. "main": "index.js",
  6. "files": [
  7. "index.js"
  8. ],
  9. "scripts": {
  10. "test": "eslint . && mocha -R spec -t 5000 test/*.test.js",
  11. "cov": "istanbul cover _mocha -- -t 5000 test/*.test.js",
  12. "lint": "eslint .",
  13. "ci": "npm run lint && npm run cov",
  14. "autod": "autod -w --prefix '^'",
  15. "contributors": "contributors -f plain -o AUTHORS"
  16. },
  17. "dependencies": {
  18. "debug": "^2.6.0",
  19. "humanize-ms": "^1.2.0",
  20. "ini": "^1.3.4",
  21. "object-assign": "^4.1.0"
  22. },
  23. "devDependencies": {
  24. "autod": "2",
  25. "beautify-benchmark": "^0.2.4",
  26. "benchmark": "^2.1.3",
  27. "contributors": "*",
  28. "egg-ci": "^1.1.0",
  29. "eslint": "1",
  30. "istanbul": "*",
  31. "koa": "^1.2.4",
  32. "mm": "^2.0.0",
  33. "mocha": "4",
  34. "pedding": "^1.1.0",
  35. "supertest": "^2.0.1"
  36. },
  37. "homepage": "https://github.com/koajs/locales",
  38. "repository": {
  39. "type": "git",
  40. "url": "git://github.com/koajs/locales.git",
  41. "web": "https://github.com/koajs/locales"
  42. },
  43. "bugs": {
  44. "url": "https://github.com/koajs/locales/issues"
  45. },
  46. "keywords": [
  47. "koa-locales",
  48. "i18n",
  49. "locales",
  50. "koa-i18n",
  51. "koa"
  52. ],
  53. "engines": {
  54. "node": ">=4.0.0"
  55. },
  56. "ci": {
  57. "version": "4, 6, 8, 10, 12"
  58. },
  59. "author": "fengmk2 <fengmk2@gmail.com> (https://fengmk2.com)",
  60. "license": "MIT"
  61. }