package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "koa-send",
  3. "description": "Transfer static files",
  4. "version": "5.0.1",
  5. "main": "index.js",
  6. "keywords": [
  7. "koa",
  8. "file",
  9. "static",
  10. "sendfile"
  11. ],
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/koajs/send.git"
  15. },
  16. "files": [
  17. "index.js"
  18. ],
  19. "nyc": {
  20. "reporter": [
  21. "lcov",
  22. "text-summary"
  23. ],
  24. "report-dir": "./coverage"
  25. },
  26. "devDependencies": {
  27. "eslint": "^4.19.1",
  28. "eslint-config-standard": "^11.0.0",
  29. "eslint-plugin-import": "^2.12.0",
  30. "eslint-plugin-node": "^6.0.1",
  31. "eslint-plugin-promise": "^3.8.0",
  32. "eslint-plugin-standard": "^3.1.0",
  33. "iltorb": "^2.3.2",
  34. "koa": "^2.5.1",
  35. "mocha": "^5.2.0",
  36. "nyc": "^15.0.0",
  37. "should": "^13.2.1",
  38. "supertest": "^3.1.0"
  39. },
  40. "license": "MIT",
  41. "dependencies": {
  42. "debug": "^4.1.1",
  43. "http-errors": "^1.7.3",
  44. "resolve-path": "^1.4.0"
  45. },
  46. "scripts": {
  47. "lint": "eslint --fix .",
  48. "test": "npm run lint && mocha --require should --reporter spec --exit",
  49. "test-cov": "nyc npm run test"
  50. },
  51. "engines": {
  52. "node": ">= 8"
  53. },
  54. "bugs": {
  55. "url": "https://github.com/koajs/send/issues"
  56. },
  57. "homepage": "https://github.com/koajs/send"
  58. }