package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "egg-multipart",
  3. "version": "2.13.1",
  4. "eggPlugin": {
  5. "name": "multipart",
  6. "optionalDependencies": [
  7. "schedule"
  8. ]
  9. },
  10. "description": "multipart plugin for egg",
  11. "main": "index.js",
  12. "scripts": {
  13. "autod": "autod",
  14. "lint": "eslint .",
  15. "test": "npm run lint -- --fix && npm run test-local",
  16. "test-local": "egg-bin test",
  17. "cov": "egg-bin cov",
  18. "ci": "egg-bin pkgfiles && npm run lint && npm run cov",
  19. "pkgfiles": "egg-bin pkgfiles"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/eggjs/egg-multipart.git"
  24. },
  25. "keywords": [
  26. "egg",
  27. "egg-plugin",
  28. "eggPlugin",
  29. "multipart"
  30. ],
  31. "author": "gxcsoccer <gxcsoccer@126.com>",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/eggjs/egg/issues"
  35. },
  36. "homepage": "https://github.com/eggjs/egg-multipart#readme",
  37. "engines": {
  38. "node": ">= 8.0.0"
  39. },
  40. "files": [
  41. "app",
  42. "config",
  43. "app.js",
  44. "index.d.ts"
  45. ],
  46. "types": "index.d.ts",
  47. "ci": {
  48. "type": "github",
  49. "os": {
  50. "github": "linux, macos"
  51. },
  52. "version": "8, 10, 12, 14, 16",
  53. "license": {
  54. "year": 2017
  55. }
  56. },
  57. "dependencies": {
  58. "co-busboy": "^1.4.0",
  59. "egg-path-matching": "^1.0.1",
  60. "humanize-bytes": "^1.0.1",
  61. "moment": "^2.22.2",
  62. "mz": "^2.7.0",
  63. "mz-modules": "^2.1.0",
  64. "stream-wormhole": "^1.1.0",
  65. "uuid": "^8.3.2"
  66. },
  67. "devDependencies": {
  68. "@types/node": "^11.11.3",
  69. "autod": "^3.0.1",
  70. "coffee": "^5.2.1",
  71. "egg": "^2.11.2",
  72. "egg-bin": "^4.9.0",
  73. "egg-ci": "^1.9.2",
  74. "egg-mock": "^3.20.1",
  75. "eslint": "^5.6.0",
  76. "eslint-config-egg": "^7.1.0",
  77. "formstream": "^1.1.0",
  78. "is-type-of": "^1.0.0",
  79. "urllib": "^2.30.0",
  80. "typescript": "^3.2.2"
  81. }
  82. }