package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "fast-uri",
  3. "description": "Dependency-free RFC 3986 URI toolbox",
  4. "version": "3.1.0",
  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. "contributors": [
  11. {
  12. "name": "Matteo Collina",
  13. "email": "hello@matteocollina.com"
  14. },
  15. {
  16. "name": "Gürgün Dayıoğlu",
  17. "email": "hey@gurgun.day",
  18. "url": "https://heyhey.to/G"
  19. },
  20. {
  21. "name": "Aras Abbasi",
  22. "email": "aras.abbasi@gmail.com"
  23. },
  24. {
  25. "name": "Frazer Smith",
  26. "email": "frazer.dev@icloud.com",
  27. "url": "https://github.com/fdawgs"
  28. }
  29. ],
  30. "repository": {
  31. "type": "git",
  32. "url": "git+https://github.com/fastify/fast-uri.git"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/fastify/fast-uri/issues"
  36. },
  37. "homepage": "https://github.com/fastify/fast-uri",
  38. "funding": [
  39. {
  40. "type": "github",
  41. "url": "https://github.com/sponsors/fastify"
  42. },
  43. {
  44. "type": "opencollective",
  45. "url": "https://opencollective.com/fastify"
  46. }
  47. ],
  48. "scripts": {
  49. "lint": "eslint",
  50. "lint:fix": "eslint --fix",
  51. "test": "npm run test:unit && npm run test:typescript",
  52. "test:browser:chromium": "playwright-test ./test/* --runner tape --browser=chromium",
  53. "test:browser:firefox": "playwright-test ./test/* --runner tape --browser=firefox",
  54. "test:browser:webkit": "playwright-test ./test/* --runner tape --browser=webkit",
  55. "test:browser": "npm run test:browser:chromium && npm run test:browser:firefox && npm run test:browser:webkit",
  56. "test:unit": "tape test/**/*.js",
  57. "test:unit:dev": "npm run test:unit -- --coverage-report=html",
  58. "test:typescript": "tsd"
  59. },
  60. "devDependencies": {
  61. "@fastify/pre-commit": "^2.1.0",
  62. "ajv": "^8.16.0",
  63. "eslint": "^9.17.0",
  64. "neostandard": "^0.12.0",
  65. "playwright-test": "^14.1.12",
  66. "tape": "^5.8.1",
  67. "tsd": "^0.32.0"
  68. }
  69. }