package.json 820 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "koa-range",
  3. "version": "0.3.0",
  4. "description": "range request implementation for koa",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "make test"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git@github.com:yorkie/koa-range.git"
  12. },
  13. "keywords": [
  14. "range",
  15. "koa",
  16. "http"
  17. ],
  18. "author": "Yorkie Neil <yorkiefixer@gmail.com>",
  19. "license": "MIT",
  20. "bugs": {
  21. "url": "https://github.com/yorkie/koa-range/issues"
  22. },
  23. "homepage": "https://github.com/yorkie/koa-range",
  24. "devDependencies": {
  25. "istanbul": "^1.1.0-alpha.1",
  26. "koa": "^2.0.0",
  27. "koa-route": "^3.2.0",
  28. "make-lint": "^1.0.1",
  29. "mocha": "^2.4.5",
  30. "should": "^8.2.2",
  31. "supertest": "^0.13.0"
  32. },
  33. "dependencies": {
  34. "stream-slice": "^0.1.2"
  35. },
  36. "engines" : {
  37. "node" : ">=7"
  38. }
  39. }