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