package.json 897 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "koa-compose",
  3. "description": "compose Koa middleware",
  4. "repository": "koajs/compose",
  5. "version": "3.2.1",
  6. "keywords": [
  7. "koa",
  8. "middleware",
  9. "compose"
  10. ],
  11. "files": [
  12. "index.js"
  13. ],
  14. "dependencies": {
  15. "any-promise": "^1.1.0"
  16. },
  17. "devDependencies": {
  18. "co": "^4.6.0",
  19. "istanbul": "^0.4.2",
  20. "matcha": "^0.7.0",
  21. "mocha": "^3.1.2",
  22. "should": "^2.0.0",
  23. "standard": "^8.4.0"
  24. },
  25. "scripts": {
  26. "bench": "matcha bench/bench.js",
  27. "lint": "standard index.js test/*.js",
  28. "test": "mocha --require should --reporter spec",
  29. "test-cov": "node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should",
  30. "test-travis": "node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- --require should"
  31. },
  32. "publishConfig": {
  33. "tag": "next"
  34. },
  35. "license": "MIT"
  36. }