package.json 2.4 KB

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