package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "safe-regex-test",
  3. "version": "1.0.3",
  4. "description": "Give a regex, get a robust predicate function that tests it against a string.",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./package.json": "./package.json"
  9. },
  10. "sideEffects": false,
  11. "scripts": {
  12. "prepack": "npmignore --auto --commentLines=autogenerated",
  13. "version": "auto-changelog && git add CHANGELOG.md",
  14. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
  15. "lint": "eslint --ext=js,mjs .",
  16. "prepublish": "not-in-publish || npm run prepublishOnly",
  17. "prepublishOnly": "safe-publish-latest",
  18. "pretest": "npm run lint",
  19. "tests-only": "nyc tape test",
  20. "test": "npm run tests-only",
  21. "posttest": "aud --production"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/ljharb/safe-regex-test.git"
  26. },
  27. "keywords": [
  28. "regex",
  29. "regexp",
  30. "test",
  31. "tester",
  32. "safe",
  33. "robust",
  34. "exec"
  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/ljharb/safe-regex-test/issues"
  43. },
  44. "homepage": "https://github.com/ljharb/safe-regex-test#readme",
  45. "dependencies": {
  46. "call-bind": "^1.0.6",
  47. "es-errors": "^1.3.0",
  48. "is-regex": "^1.1.4"
  49. },
  50. "devDependencies": {
  51. "@ljharb/eslint-config": "^21.1.0",
  52. "aud": "^2.0.4",
  53. "auto-changelog": "^2.4.0",
  54. "es-value-fixtures": "^1.4.2",
  55. "eslint": "=8.8.0",
  56. "for-each": "^0.3.3",
  57. "in-publish": "^2.0.1",
  58. "npmignore": "^0.3.1",
  59. "nyc": "^10.3.2",
  60. "object-inspect": "^1.13.1",
  61. "safe-publish-latest": "^2.0.0",
  62. "tape": "^5.7.4"
  63. },
  64. "auto-changelog": {
  65. "output": "CHANGELOG.md",
  66. "template": "keepachangelog",
  67. "unreleased": false,
  68. "commitLimit": false,
  69. "backfillLimit": false,
  70. "hideCredit": true
  71. },
  72. "publishConfig": {
  73. "ignore": [
  74. ".github/workflows"
  75. ]
  76. },
  77. "engines": {
  78. "node": ">= 0.4"
  79. }
  80. }