840fe63b0d90f84e446ad44787799350c75e43fd40f25347caa608d5cc5ac6df53189d550a3c4de3edb12f4c4bd844d24e126606c3c48784ff692151f1c2dc 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "path-to-regexp",
  3. "version": "6.3.0",
  4. "description": "Express style path to RegExp utility",
  5. "keywords": [
  6. "express",
  7. "regexp",
  8. "route",
  9. "routing"
  10. ],
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/pillarjs/path-to-regexp.git"
  14. },
  15. "license": "MIT",
  16. "sideEffects": false,
  17. "main": "dist/index.js",
  18. "module": "dist.es2015/index.js",
  19. "typings": "dist/index.d.ts",
  20. "files": [
  21. "dist.es2015/",
  22. "dist/"
  23. ],
  24. "scripts": {
  25. "build": "ts-scripts build",
  26. "format": "ts-scripts format",
  27. "lint": "ts-scripts lint",
  28. "prepare": "ts-scripts install && npm run build",
  29. "size": "size-limit",
  30. "specs": "ts-scripts specs",
  31. "test": "ts-scripts test && npm run size"
  32. },
  33. "devDependencies": {
  34. "@borderless/ts-scripts": "^0.15.0",
  35. "@size-limit/preset-small-lib": "^11.1.2",
  36. "@types/node": "^20.4.9",
  37. "@types/semver": "^7.3.1",
  38. "@vitest/coverage-v8": "^1.4.0",
  39. "recheck": "^4.4.5",
  40. "semver": "^7.3.5",
  41. "size-limit": "^11.1.2",
  42. "typescript": "^5.1.6"
  43. },
  44. "publishConfig": {
  45. "access": "public"
  46. },
  47. "size-limit": [
  48. {
  49. "path": "dist.es2015/index.js",
  50. "limit": "2.1 kB"
  51. }
  52. ],
  53. "ts-scripts": {
  54. "dist": [
  55. "dist",
  56. "dist.es2015"
  57. ],
  58. "project": [
  59. "tsconfig.build.json",
  60. "tsconfig.es2015.json"
  61. ]
  62. }
  63. }