package.json 881 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "koa-bodyparser",
  3. "version": "4.3.0",
  4. "description": "a body parser for koa",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "make test"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/koajs/bodyparser.git"
  12. },
  13. "files": [
  14. "index.js"
  15. ],
  16. "keywords": [
  17. "bodyParser",
  18. "json",
  19. "urlencoded",
  20. "koa",
  21. "body"
  22. ],
  23. "author": "dead_horse <dead_horse@qq.com> (http://deadhorse.me)",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/koajs/body-parser/issues"
  27. },
  28. "homepage": "https://github.com/koajs/body-parser",
  29. "devDependencies": {
  30. "autod": "2.4.2",
  31. "istanbul": "^0.4.5",
  32. "koa": "^2.0.1",
  33. "mocha": "^3.2.0",
  34. "should": "^11.2.0",
  35. "supertest": "^3.0.0"
  36. },
  37. "dependencies": {
  38. "co-body": "^6.0.0",
  39. "copy-to": "^2.0.1"
  40. },
  41. "engines": {
  42. "node": ">=8.0.0"
  43. }
  44. }