package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "is-regex",
  3. "version": "1.1.1",
  4. "description": "Is this value a JS regex? Works cross-realm/iframe, and despite ES6 @@toStringTag",
  5. "author": "Jordan Harband <ljharb@gmail.com>",
  6. "funding": {
  7. "url": "https://github.com/sponsors/ljharb"
  8. },
  9. "license": "MIT",
  10. "main": "index.js",
  11. "scripts": {
  12. "prepublish": "safe-publish-latest",
  13. "pretest": "npm run lint",
  14. "test": "npm run tests-only",
  15. "tests-only": "node --harmony --es-staging test",
  16. "posttest": "npx aud --production",
  17. "coverage": "covert test/index.js",
  18. "lint": "eslint .",
  19. "eccheck": "eclint check *.js **/*.js > /dev/null",
  20. "version": "auto-changelog && git add CHANGELOG.md",
  21. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git://github.com/ljharb/is-regex.git"
  26. },
  27. "bugs": {
  28. "url": "https://github.com/ljharb/is-regex/issues"
  29. },
  30. "homepage": "https://github.com/ljharb/is-regex",
  31. "keywords": [
  32. "regex",
  33. "regexp",
  34. "is",
  35. "regular expression",
  36. "regular",
  37. "expression"
  38. ],
  39. "dependencies": {
  40. "has-symbols": "^1.0.1"
  41. },
  42. "devDependencies": {
  43. "@ljharb/eslint-config": "^17.1.0",
  44. "aud": "^1.1.2",
  45. "auto-changelog": "^2.2.0",
  46. "covert": "^1.1.1",
  47. "eclint": "^2.8.1",
  48. "eslint": "^7.6.0",
  49. "foreach": "^2.0.5",
  50. "safe-publish-latest": "^1.1.4",
  51. "tape": "^5.0.1"
  52. },
  53. "testling": {
  54. "files": "test.js",
  55. "browsers": [
  56. "iexplore/6.0..latest",
  57. "firefox/3.0..6.0",
  58. "firefox/15.0..latest",
  59. "firefox/nightly",
  60. "chrome/4.0..10.0",
  61. "chrome/20.0..latest",
  62. "chrome/canary",
  63. "opera/10.0..12.0",
  64. "opera/15.0..latest",
  65. "opera/next",
  66. "safari/4.0..latest",
  67. "ipad/6.0..latest",
  68. "iphone/6.0..latest",
  69. "android-browser/4.2"
  70. ]
  71. },
  72. "engines": {
  73. "node": ">= 0.4"
  74. },
  75. "auto-changelog": {
  76. "output": "CHANGELOG.md",
  77. "template": "keepachangelog",
  78. "unreleased": false,
  79. "commitLimit": false,
  80. "backfillLimit": false,
  81. "hideCredit": true
  82. },
  83. "__npminstall_done": "Thu Dec 24 2020 20:21:03 GMT+0800 (CST)",
  84. "_from": "is-regex@1.1.1",
  85. "_resolved": "https://registry.npm.taobao.org/is-regex/download/is-regex-1.1.1.tgz"
  86. }