web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
2.1 KiB

  1. {
  2. "name": "is-regex",
  3. "version": "1.1.2",
  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 && npm run test:harmony",
  15. "tests-only": "nyc node test",
  16. "test:harmony": "nyc node --harmony --es-staging test",
  17. "posttest": "npx aud --production",
  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/inspect-js/is-regex.git"
  26. },
  27. "bugs": {
  28. "url": "https://github.com/inspect-js/is-regex/issues"
  29. },
  30. "homepage": "https://github.com/inspect-js/is-regex",
  31. "keywords": [
  32. "regex",
  33. "regexp",
  34. "is",
  35. "regular expression",
  36. "regular",
  37. "expression"
  38. ],
  39. "dependencies": {
  40. "call-bind": "^1.0.2",
  41. "has-symbols": "^1.0.1"
  42. },
  43. "devDependencies": {
  44. "@ljharb/eslint-config": "^17.5.0",
  45. "aud": "^1.1.3",
  46. "auto-changelog": "^2.2.1",
  47. "eclint": "^2.8.1",
  48. "eslint": "^7.19.0",
  49. "foreach": "^2.0.5",
  50. "nyc": "^10.3.2",
  51. "safe-publish-latest": "^1.1.4",
  52. "tape": "^5.1.1"
  53. },
  54. "testling": {
  55. "files": "test.js",
  56. "browsers": [
  57. "iexplore/6.0..latest",
  58. "firefox/3.0..6.0",
  59. "firefox/15.0..latest",
  60. "firefox/nightly",
  61. "chrome/4.0..10.0",
  62. "chrome/20.0..latest",
  63. "chrome/canary",
  64. "opera/10.0..12.0",
  65. "opera/15.0..latest",
  66. "opera/next",
  67. "safari/4.0..latest",
  68. "ipad/6.0..latest",
  69. "iphone/6.0..latest",
  70. "android-browser/4.2"
  71. ]
  72. },
  73. "engines": {
  74. "node": ">= 0.4"
  75. },
  76. "auto-changelog": {
  77. "output": "CHANGELOG.md",
  78. "template": "keepachangelog",
  79. "unreleased": false,
  80. "commitLimit": false,
  81. "backfillLimit": false,
  82. "hideCredit": true
  83. }
  84. }