package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "string.prototype.matchall",
  3. "version": "4.0.7",
  4. "description": "Spec-compliant polyfill for String.prototype.matchAll",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepublish": "not-in-publish || npm run prepublishOnly",
  8. "prepublishOnly": "safe-publish-latest",
  9. "pretest": "npm run lint",
  10. "test": "npm run tests-only",
  11. "posttest": "npx aud --production",
  12. "tests-only": "nyc tape 'test/**/*.js'",
  13. "prelint": "evalmd *.md",
  14. "lint": "eslint .",
  15. "postlint": "es-shim-api --bound",
  16. "version": "auto-changelog && git add CHANGELOG.md",
  17. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/es-shims/String.prototype.matchAll.git"
  22. },
  23. "keywords": [
  24. "ES2020",
  25. "ES",
  26. "String.prototype.matchAll",
  27. "matchAll",
  28. "match",
  29. "regex",
  30. "regexp",
  31. "regular",
  32. "expression",
  33. "matches"
  34. ],
  35. "author": "Jordan Harband <ljharb@gmail.com>",
  36. "funding": {
  37. "url": "https://github.com/sponsors/ljharb"
  38. },
  39. "license": "MIT",
  40. "bugs": {
  41. "url": "https://github.com/es-shims/String.prototype.matchAll/issues"
  42. },
  43. "homepage": "https://github.com/es-shims/String.prototype.matchAll#readme",
  44. "dependencies": {
  45. "call-bind": "^1.0.2",
  46. "define-properties": "^1.1.3",
  47. "es-abstract": "^1.19.1",
  48. "get-intrinsic": "^1.1.1",
  49. "has-symbols": "^1.0.3",
  50. "internal-slot": "^1.0.3",
  51. "regexp.prototype.flags": "^1.4.1",
  52. "side-channel": "^1.0.4"
  53. },
  54. "devDependencies": {
  55. "@es-shims/api": "^2.2.3",
  56. "@ljharb/eslint-config": "^19.1.1",
  57. "aud": "^2.0.0",
  58. "auto-changelog": "^2.4.0",
  59. "es5-shim": "^4.6.5",
  60. "es6-shim": "^0.35.6",
  61. "eslint": "=8.8.0",
  62. "evalmd": "^0.0.19",
  63. "foreach": "^2.0.5",
  64. "functions-have-names": "^1.2.2",
  65. "nyc": "^10.3.2",
  66. "object-inspect": "^1.12.0",
  67. "object.assign": "^4.1.2",
  68. "object.entries": "^1.1.5",
  69. "safe-publish-latest": "^2.0.0",
  70. "tape": "^5.5.2"
  71. },
  72. "auto-changelog": {
  73. "output": "CHANGELOG.md",
  74. "template": "keepachangelog",
  75. "unreleased": false,
  76. "commitLimit": false,
  77. "backfillLimit": false,
  78. "hideCredit": true,
  79. "startingVersion": "v4.0.5"
  80. }
  81. }