package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "is-finalizationregistry",
  3. "version": "1.1.1",
  4. "description": "Is this value a JS FinalizationRegistry? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "exports": {
  8. ".": "./index.js",
  9. "./package.json": "./package.json"
  10. },
  11. "sideEffects": true,
  12. "scripts": {
  13. "prepack": "npmignore --auto --commentLines=autogenerated",
  14. "prepublishOnly": "safe-publish-latest",
  15. "prepublish": "not-in-publish || npm run prepublishOnly",
  16. "version": "auto-changelog && git add CHANGELOG.md",
  17. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
  18. "lint": "eslint --ext=.js,.mjs .",
  19. "postlint": "tsc -P . && attw -P",
  20. "pretest": "npm run lint",
  21. "tests-only": "nyc tape 'test/**/*.js'",
  22. "test": "npm run tests-only",
  23. "posttest": "npx npm@'>=10.2' audit --production"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git+https://github.com/inspect-js/is-finalizationregistry.git"
  28. },
  29. "keywords": [
  30. "weakref",
  31. "finalization",
  32. "finalizationregistry",
  33. "finalization registry"
  34. ],
  35. "author": "Jordan Harband <ljharb@gmail.com>",
  36. "funding": {
  37. "url": "https://github.com/sponsors/ljharb"
  38. },
  39. "license": "MIT",
  40. "bugs": {
  41. "url": "https://github.com/inspect-js/is-finalizationregistry/issues"
  42. },
  43. "homepage": "https://github.com/inspect-js/is-finalizationregistry#readme",
  44. "dependencies": {
  45. "call-bound": "^1.0.3"
  46. },
  47. "devDependencies": {
  48. "@arethetypeswrong/cli": "^0.17.1",
  49. "@ljharb/eslint-config": "^21.1.1",
  50. "@ljharb/tsconfig": "^0.2.2",
  51. "@types/for-each": "^0.3.3",
  52. "@types/object-inspect": "^1.13.0",
  53. "@types/tape": "^5.7.0",
  54. "auto-changelog": "^2.5.0",
  55. "encoding": "^0.1.13",
  56. "eslint": "=8.8.0",
  57. "for-each": "^0.3.3",
  58. "in-publish": "^2.0.1",
  59. "npmignore": "^0.3.1",
  60. "nyc": "^10.3.2",
  61. "object-inspect": "^1.13.3",
  62. "safe-publish-latest": "^2.0.0",
  63. "tape": "^5.9.0",
  64. "typescript": "next"
  65. },
  66. "auto-changelog": {
  67. "output": "CHANGELOG.md",
  68. "template": "keepachangelog",
  69. "unreleased": false,
  70. "commitLimit": false,
  71. "backfillLimit": false,
  72. "hideCredit": true
  73. },
  74. "publishConfig": {
  75. "ignore": [
  76. ".github/workflows"
  77. ]
  78. },
  79. "engines": {
  80. "node": ">= 0.4"
  81. }
  82. }