package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "node-res",
  3. "version": "5.0.1",
  4. "description": "Nodejs http response builder",
  5. "main": "index.js",
  6. "files": [
  7. "index.js",
  8. "methods.js"
  9. ],
  10. "scripts": {
  11. "lint": "standard",
  12. "pretest": "npm run lint",
  13. "posttest": "npm run coverage",
  14. "test:local": "FORCE_COLOR=true node bin/index.js --local",
  15. "test": "./node_modules/.bin/nyc npm run test:local",
  16. "test:win": "set FORCE_COLOR=true && node bin/index.js --win",
  17. "coverage": "nyc report --reporter=text-lcov | coveralls"
  18. },
  19. "author": "amanvirk",
  20. "license": "MIT",
  21. "devDependencies": {
  22. "co-functional": "^0.2.1",
  23. "coveralls": "^3.0.2",
  24. "cz-conventional-changelog": "^2.1.0",
  25. "japa": "^1.0.6",
  26. "japa-cli": "^1.0.1",
  27. "nyc": "^12.0.2",
  28. "semver": "^5.5.1",
  29. "standard": "^11.0.1",
  30. "supertest": "^3.1.0"
  31. },
  32. "dependencies": {
  33. "destroy": "^1.0.4",
  34. "etag": "^1.8.1",
  35. "mime-types": "^2.1.19",
  36. "on-finished": "^2.3.0",
  37. "vary": "^1.1.2"
  38. },
  39. "directories": {
  40. "test": "test"
  41. },
  42. "repository": {
  43. "type": "git",
  44. "url": "git+https://github.com/poppinss/node-res.git"
  45. },
  46. "keywords": [
  47. "node-res",
  48. "http",
  49. "response",
  50. "http-res",
  51. "response",
  52. "builder",
  53. "res",
  54. "builder"
  55. ],
  56. "bugs": {
  57. "url": "https://github.com/poppinss/node-res/issues"
  58. },
  59. "homepage": "https://github.com/poppinss/node-res#readme",
  60. "config": {
  61. "commitizen": {
  62. "path": "./node_modules/cz-conventional-changelog"
  63. }
  64. },
  65. "nyc": {
  66. "include": [
  67. "index.js",
  68. "methods.js"
  69. ]
  70. }
  71. }