package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "version": "5.1.3",
  3. "name": "har-validator",
  4. "description": "Extremely fast HTTP Archive (HAR) validator using JSON Schema",
  5. "author": "Ahmad Nassri <ahmad@ahmadnassri.com> (https://www.ahmadnassri.com/)",
  6. "homepage": "https://github.com/ahmadnassri/node-har-validator",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/ahmadnassri/node-har-validator.git"
  10. },
  11. "license": "MIT",
  12. "main": "lib/promise.js",
  13. "keywords": [
  14. "har",
  15. "cli",
  16. "ajv",
  17. "http",
  18. "archive",
  19. "validate",
  20. "validator"
  21. ],
  22. "engines": {
  23. "node": ">=6"
  24. },
  25. "files": [
  26. "lib"
  27. ],
  28. "bugs": {
  29. "url": "https://github.com/ahmadnassri/node-har-validator/issues"
  30. },
  31. "scripts": {
  32. "lint:deps": "npx updated",
  33. "lint:ec": "npx editorconfig-checker .",
  34. "lint:js": "npx eslint .",
  35. "lint:md": "npx remark --quiet --frail .",
  36. "lint": "npx run-p lint:*",
  37. "open:coverage": "opener coverage/lcov-report/index.html",
  38. "test": "tap test --coverage-report=lcov --no-browser"
  39. },
  40. "devDependencies": {
  41. "tap": "^12.0.1"
  42. },
  43. "dependencies": {
  44. "ajv": "^6.5.5",
  45. "har-schema": "^2.0.0"
  46. }
  47. }