package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "fast-uri",
  3. "description": "Dependency free RFC 3986 URI toolbox",
  4. "version": "3.0.3",
  5. "main": "index.js",
  6. "type": "commonjs",
  7. "types": "types/index.d.ts",
  8. "license": "BSD-3-Clause",
  9. "author": "Vincent Le Goff <vince.legoff@gmail.com> (https://github.com/zekth)",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/fastify/fast-uri.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/fastify/fast-uri/issues"
  16. },
  17. "homepage": "https://github.com/fastify/fast-uri",
  18. "scripts": {
  19. "bench": "node benchmark.js",
  20. "lint": "standard | snazzy",
  21. "lint:fix": "standard --fix",
  22. "test": "npm run lint && npm run test:unit && npm run test:typescript",
  23. "test:ci": "npm run lint && npm run test:unit -- --coverage-report=lcovonly && npm run test:typescript",
  24. "test:unit": "npx tape test/**/*.js",
  25. "test:unit:dev": "npm run test:unit -- --coverage-report=html",
  26. "test:typescript": "tsd"
  27. },
  28. "devDependencies": {
  29. "@fastify/pre-commit": "^2.1.0",
  30. "ajv": "^8.16.0",
  31. "benchmark": "^2.1.4",
  32. "coveralls": "^3.1.1",
  33. "snazzy": "^9.0.0",
  34. "standard": "^17.1.0",
  35. "tape": "^5.8.1",
  36. "tsd": "^0.31.0",
  37. "uri-js": "^4.4.1"
  38. }
  39. }