package.json 664 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "koa-json",
  3. "version": "2.0.2",
  4. "repository": "koajs/json",
  5. "description": "pretty (non-compressed) json response middleware",
  6. "keywords": [
  7. "koa",
  8. "json"
  9. ],
  10. "dependencies": {
  11. "koa-is-json": "1",
  12. "streaming-json-stringify": "3"
  13. },
  14. "devDependencies": {
  15. "istanbul": "0",
  16. "mocha": "2",
  17. "koa": "2",
  18. "supertest": "1"
  19. },
  20. "license": "MIT",
  21. "scripts": {
  22. "test": "NODE_ENV=test mocha --reporter spec",
  23. "test-cov": "NODE_ENV=test istanbul cover ./node_modules/.bin/_mocha",
  24. "test-travis": "NODE_ENV=test istanbul cover ./node_modules/.bin/_mocha --report lcovonly"
  25. },
  26. "files": ["index.js"]
  27. }