package.json 818 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "co-body",
  3. "version": "6.1.0",
  4. "repository": "cojs/co-body",
  5. "description": "request body parsing for co",
  6. "keywords": [
  7. "request",
  8. "parse",
  9. "parser",
  10. "json",
  11. "co",
  12. "generators",
  13. "urlencoded"
  14. ],
  15. "dependencies": {
  16. "inflation": "^2.0.0",
  17. "qs": "^6.5.2",
  18. "raw-body": "^2.3.3",
  19. "type-is": "^1.6.16"
  20. },
  21. "devDependencies": {
  22. "autod": "^3.0.1",
  23. "egg-bin": "^4.7.0",
  24. "eslint": "^4.19.1",
  25. "eslint-config-egg": "^7.0.0",
  26. "koa": "^1.6.0",
  27. "safe-qs": "^6.0.1",
  28. "should": "^11.2.0",
  29. "supertest": "^3.1.0"
  30. },
  31. "license": "MIT",
  32. "scripts": {
  33. "lint": "eslint .",
  34. "autod": "autod",
  35. "test": "egg-bin test -r should",
  36. "cov": "eslint . && egg-bin cov -r should"
  37. },
  38. "files": [
  39. "index.js",
  40. "lib/"
  41. ]
  42. }