Changeset 79a0317 for imaps-frontend/node_modules/is-finalizationregistry
- Timestamp:
- 01/21/25 03:08:24 (3 days ago)
- Branches:
- main
- Parents:
- 0c6b92a
- Location:
- imaps-frontend/node_modules/is-finalizationregistry
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/is-finalizationregistry/CHANGELOG.md
r0c6b92a r79a0317 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 8 ## [v1.1.1](https://github.com/inspect-js/is-finalizationregistry/compare/v1.1.0...v1.1.1) - 2024-12-16 9 10 ### Commits 11 12 - [actions] re-add finishers [`0f41639`](https://github.com/inspect-js/is-finalizationregistry/commit/0f41639657eb79da783ab99246ffbab97ce52785) 13 - [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/tsconfig`, `@types/tape` [`1467f11`](https://github.com/inspect-js/is-finalizationregistry/commit/1467f11d2b638ae72ab5fff33a72c88143ed9546) 14 - [meta] sort package.json [`bd48b68`](https://github.com/inspect-js/is-finalizationregistry/commit/bd48b686cf499ae590404729b4d3a6fca9c9d0f3) 15 - [Refactor] use `call-bound` directly [`ce9dcd4`](https://github.com/inspect-js/is-finalizationregistry/commit/ce9dcd4abea4d17ca63b2d46385d78bebaf05d84) 16 - [Deps] update `call-bind` [`9b8daac`](https://github.com/inspect-js/is-finalizationregistry/commit/9b8daac5237a420ec8de65222d1b14e56de55b50) 17 - [meta] add `sideEffects` flag [`c5cb18b`](https://github.com/inspect-js/is-finalizationregistry/commit/c5cb18b51f22a52dcdc17afc3ce02a1ace41d418) 7 18 8 19 ## [v1.1.0](https://github.com/inspect-js/is-finalizationregistry/compare/v1.0.2...v1.1.0) - 2024-11-23 -
imaps-frontend/node_modules/is-finalizationregistry/index.js
r0c6b92a r79a0317 1 1 'use strict'; 2 2 3 var callBound = require('call-b ind/callBound');3 var callBound = require('call-bound'); 4 4 5 5 /** @type {undefined | ((value: ThisParameterType<typeof FinalizationRegistry.prototype.register>, ...args: Parameters<typeof FinalizationRegistry.prototype.register>) => ReturnType<typeof FinalizationRegistry.prototype.register>)} */ -
imaps-frontend/node_modules/is-finalizationregistry/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "is-finalizationregistry", 3 "version": "1.1.0", 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 "scripts": { 12 "prepack": "npmignore --auto --commentLines=autogenerated", 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)\")\"", 17 "lint": "eslint --ext=.js,.mjs .", 18 "postlint": "tsc -P . && attw -P", 19 "pretest": "npm run lint", 20 "tests-only": "nyc tape 'test/**/*.js'", 21 "test": "npm run tests-only", 22 "posttest": "npx npm@'>=10.2' audit --production" 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": { 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", 54 "for-each": "^0.3.3", 55 "in-publish": "^2.0.1", 56 "npmignore": "^0.3.1", 57 "nyc": "^10.3.2", 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" 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": { 72 "call-bind": "^1.0.7" 73 }, 74 "publishConfig": { 75 "ignore": [ 76 ".github/workflows" 77 ] 78 }, 79 "engines": { 80 "node": ">= 0.4" 81 } 2 "_from": "is-finalizationregistry@^1.1.0", 3 "_id": "is-finalizationregistry@1.1.1", 4 "_inBundle": false, 5 "_integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", 6 "_location": "/is-finalizationregistry", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "is-finalizationregistry@^1.1.0", 12 "name": "is-finalizationregistry", 13 "escapedName": "is-finalizationregistry", 14 "rawSpec": "^1.1.0", 15 "saveSpec": null, 16 "fetchSpec": "^1.1.0" 17 }, 18 "_requiredBy": [ 19 "/which-builtin-type" 20 ], 21 "_resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", 22 "_shasum": "eefdcdc6c94ddd0674d9c85887bf93f944a97c90", 23 "_spec": "is-finalizationregistry@^1.1.0", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/which-builtin-type", 25 "author": { 26 "name": "Jordan Harband", 27 "email": "ljharb@gmail.com" 28 }, 29 "auto-changelog": { 30 "output": "CHANGELOG.md", 31 "template": "keepachangelog", 32 "unreleased": false, 33 "commitLimit": false, 34 "backfillLimit": false, 35 "hideCredit": true 36 }, 37 "bugs": { 38 "url": "https://github.com/inspect-js/is-finalizationregistry/issues" 39 }, 40 "bundleDependencies": false, 41 "dependencies": { 42 "call-bound": "^1.0.3" 43 }, 44 "deprecated": false, 45 "description": "Is this value a JS FinalizationRegistry? This module works cross-realm/iframe, and despite ES6 @@toStringTag.", 46 "devDependencies": { 47 "@arethetypeswrong/cli": "^0.17.1", 48 "@ljharb/eslint-config": "^21.1.1", 49 "@ljharb/tsconfig": "^0.2.2", 50 "@types/for-each": "^0.3.3", 51 "@types/object-inspect": "^1.13.0", 52 "@types/tape": "^5.7.0", 53 "auto-changelog": "^2.5.0", 54 "encoding": "^0.1.13", 55 "eslint": "=8.8.0", 56 "for-each": "^0.3.3", 57 "in-publish": "^2.0.1", 58 "npmignore": "^0.3.1", 59 "nyc": "^10.3.2", 60 "object-inspect": "^1.13.3", 61 "safe-publish-latest": "^2.0.0", 62 "tape": "^5.9.0", 63 "typescript": "next" 64 }, 65 "engines": { 66 "node": ">= 0.4" 67 }, 68 "exports": { 69 ".": "./index.js", 70 "./package.json": "./package.json" 71 }, 72 "funding": { 73 "url": "https://github.com/sponsors/ljharb" 74 }, 75 "homepage": "https://github.com/inspect-js/is-finalizationregistry#readme", 76 "keywords": [ 77 "weakref", 78 "finalization", 79 "finalizationregistry", 80 "finalization registry" 81 ], 82 "license": "MIT", 83 "main": "index.js", 84 "name": "is-finalizationregistry", 85 "publishConfig": { 86 "ignore": [ 87 ".github/workflows" 88 ] 89 }, 90 "repository": { 91 "type": "git", 92 "url": "git+https://github.com/inspect-js/is-finalizationregistry.git" 93 }, 94 "scripts": { 95 "lint": "eslint --ext=.js,.mjs .", 96 "postlint": "tsc -P . && attw -P", 97 "posttest": "npx npm@'>=10.2' audit --production", 98 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 99 "prepack": "npmignore --auto --commentLines=autogenerated", 100 "prepublish": "not-in-publish || npm run prepublishOnly", 101 "prepublishOnly": "safe-publish-latest", 102 "pretest": "npm run lint", 103 "test": "npm run tests-only", 104 "tests-only": "nyc tape 'test/**/*.js'", 105 "version": "auto-changelog && git add CHANGELOG.md" 106 }, 107 "sideEffects": true, 108 "types": "index.d.ts", 109 "version": "1.1.1" 82 110 }
Note:
See TracChangeset
for help on using the changeset viewer.