package.json 861 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "koa-convert",
  3. "version": "1.2.0",
  4. "keywords": [
  5. "koa",
  6. "middleware",
  7. "convert"
  8. ],
  9. "description": "convert koa legacy generator-based middleware to promise-based middleware",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/gyson/koa-convert.git"
  13. },
  14. "main": "index.js",
  15. "scripts": {
  16. "test": "standard && mocha test.js"
  17. },
  18. "author": "gyson <eilian.yunsong@gmail.com>",
  19. "license": "MIT",
  20. "bugs": {
  21. "url": "https://github.com/gyson/koa-convert/issues"
  22. },
  23. "homepage": "https://github.com/gyson/koa-convert#readme",
  24. "dependencies": {
  25. "co": "^4.6.0",
  26. "koa-compose": "^3.0.0"
  27. },
  28. "devDependencies": {
  29. "koa": "^2.0.0-alpha.2",
  30. "koa-v1": "^1.0.0",
  31. "mocha": "^2.3.3",
  32. "standard": "^5.3.1",
  33. "supertest": "^1.1.0"
  34. },
  35. "engines": {
  36. "node": ">= 4"
  37. }
  38. }