package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "http-assert",
  3. "description": "assert with status codes",
  4. "version": "1.5.0",
  5. "license": "MIT",
  6. "keywords": [
  7. "assert",
  8. "http"
  9. ],
  10. "repository": "jshttp/http-assert",
  11. "dependencies": {
  12. "deep-equal": "~1.0.1",
  13. "http-errors": "~1.8.0"
  14. },
  15. "devDependencies": {
  16. "eslint": "7.32.0",
  17. "eslint-config-standard": "14.1.1",
  18. "eslint-plugin-import": "2.24.2",
  19. "eslint-plugin-markdown": "2.2.0",
  20. "eslint-plugin-node": "11.1.0",
  21. "eslint-plugin-promise": "4.3.1",
  22. "eslint-plugin-standard": "4.1.0",
  23. "istanbul": "0.4.5",
  24. "mocha": "9.1.0"
  25. },
  26. "files": [
  27. "HISTORY.md",
  28. "LICENSE",
  29. "README.md",
  30. "index.js"
  31. ],
  32. "engines": {
  33. "node": ">= 0.8"
  34. },
  35. "scripts": {
  36. "lint": "eslint .",
  37. "test": "mocha --reporter spec --bail --check-leaks test/",
  38. "test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
  39. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/"
  40. }
  41. }