source: imaps-frontend/node_modules/is-finalizationregistry/package.json@ 0c6b92a

main
Last change on this file since 0c6b92a was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago

Pred finalna verzija

  • Property mode set to 100644
File size: 2.3 KB
Line 
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 }
82}
Note: See TracBrowser for help on using the repository browser.