package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "is-finalizationregistry",
  3. "version": "1.0.2",
  4. "description": "Is this value a JS FinalizationRegistry? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
  5. "main": "index.js",
  6. "exports": {
  7. ".": [
  8. {
  9. "default": "./index.js"
  10. },
  11. "./index.js"
  12. ],
  13. "./package.json": "./package.json"
  14. },
  15. "scripts": {
  16. "prepublishOnly": "safe-publish-latest",
  17. "prepublish": "not-in-publish || npm run prepublishOnly",
  18. "version": "auto-changelog && git add CHANGELOG.md",
  19. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
  20. "lint": "eslint .",
  21. "pretest": "npm run lint",
  22. "tests-only": "nyc tape 'test/**/*.js'",
  23. "test": "npm run tests-only",
  24. "posttest": "aud --production"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git+https://github.com/inspect-js/is-finalizationregistry.git"
  29. },
  30. "keywords": [
  31. "weakref",
  32. "finalization",
  33. "finalizationregistry",
  34. "finalization registry"
  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/inspect-js/is-finalizationregistry/issues"
  43. },
  44. "homepage": "https://github.com/inspect-js/is-finalizationregistry#readme",
  45. "devDependencies": {
  46. "@ljharb/eslint-config": "^18.0.0",
  47. "aud": "^1.1.5",
  48. "auto-changelog": "^2.3.0",
  49. "eslint": "^7.32.0",
  50. "for-each": "^0.3.3",
  51. "nyc": "^10.3.2",
  52. "object-inspect": "^1.11.0",
  53. "safe-publish-latest": "^1.1.4",
  54. "tape": "^5.3.1"
  55. },
  56. "auto-changelog": {
  57. "output": "CHANGELOG.md",
  58. "template": "keepachangelog",
  59. "unreleased": false,
  60. "commitLimit": false,
  61. "backfillLimit": false,
  62. "hideCredit": true
  63. },
  64. "dependencies": {
  65. "call-bind": "^1.0.2"
  66. }
  67. }