Changeset 79a0317 for imaps-frontend/node_modules/which-collection
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/which-collection/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "which-collection", 3 "version": "1.0.2", 4 "description": "Which kind of Collection (Map, Set, WeakMap, WeakSet) is this JavaScript value? Works cross-realm, without `instanceof`, and despite Symbol.toStringTag.", 5 "main": "index.js", 6 "exports": { 7 ".": "./index.js", 8 "./package.json": "./package.json" 9 }, 10 "sideEffects": false, 11 "scripts": { 12 "prepack": "npmignore --auto --commentLines=autogenerated", 13 "prepublishOnly": "safe-publish-latest", 14 "prepublish": "not-in-publish || npm run prepublishOnly", 15 "lint": "eslint --ext=js,mjs .", 16 "pretest": "npm run lint", 17 "postlint": "tsc -p . && attw -P", 18 "tests-only": "nyc tape 'test/**/*.js'", 19 "test": "npm run tests-only", 20 "posttest": "npx aud --production", 21 "version": "auto-changelog && git add CHANGELOG.md", 22 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 23 }, 24 "repository": { 25 "type": "git", 26 "url": "git+https://github.com/inspect-js/which-collection.git" 27 }, 28 "keywords": [ 29 "map", 30 "set", 31 "weakmap", 32 "weakset", 33 "collection.es6", 34 "es2015" 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/which-collection/issues" 43 }, 44 "homepage": "https://github.com/inspect-js/which-collection#readme", 45 "devDependencies": { 46 "@arethetypeswrong/cli": "^0.15.0", 47 "@ljharb/eslint-config": "^21.1.0", 48 "@types/for-each": "^0.3.3", 49 "@types/object-inspect": "^1.8.4", 50 "@types/tape": "^5.6.4", 51 "aud": "^2.0.4", 52 "auto-changelog": "^2.4.0", 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.1", 59 "safe-publish-latest": "^2.0.0", 60 "tape": "^5.7.5", 61 "typescript": "next" 62 }, 63 "dependencies": { 64 "is-map": "^2.0.3", 65 "is-set": "^2.0.3", 66 "is-weakmap": "^2.0.2", 67 "is-weakset": "^2.0.3" 68 }, 69 "auto-changelog": { 70 "output": "CHANGELOG.md", 71 "template": "keepachangelog", 72 "unreleased": false, 73 "commitLimit": false, 74 "backfillLimit": false, 75 "hideCredit": true 76 }, 77 "publishConfig": { 78 "ignore": [ 79 ".github/workflows" 80 ] 81 }, 82 "engines": { 83 "node": ">= 0.4" 84 } 2 "_from": "which-collection@^1.0.2", 3 "_id": "which-collection@1.0.2", 4 "_inBundle": false, 5 "_integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==", 6 "_location": "/which-collection", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "which-collection@^1.0.2", 12 "name": "which-collection", 13 "escapedName": "which-collection", 14 "rawSpec": "^1.0.2", 15 "saveSpec": null, 16 "fetchSpec": "^1.0.2" 17 }, 18 "_requiredBy": [ 19 "/which-builtin-type" 20 ], 21 "_resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz", 22 "_shasum": "627ef76243920a107e7ce8e96191debe4b16c2a0", 23 "_spec": "which-collection@^1.0.2", 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/which-collection/issues" 39 }, 40 "bundleDependencies": false, 41 "dependencies": { 42 "is-map": "^2.0.3", 43 "is-set": "^2.0.3", 44 "is-weakmap": "^2.0.2", 45 "is-weakset": "^2.0.3" 46 }, 47 "deprecated": false, 48 "description": "Which kind of Collection (Map, Set, WeakMap, WeakSet) is this JavaScript value? Works cross-realm, without `instanceof`, and despite Symbol.toStringTag.", 49 "devDependencies": { 50 "@arethetypeswrong/cli": "^0.15.0", 51 "@ljharb/eslint-config": "^21.1.0", 52 "@types/for-each": "^0.3.3", 53 "@types/object-inspect": "^1.8.4", 54 "@types/tape": "^5.6.4", 55 "aud": "^2.0.4", 56 "auto-changelog": "^2.4.0", 57 "eslint": "=8.8.0", 58 "for-each": "^0.3.3", 59 "in-publish": "^2.0.1", 60 "npmignore": "^0.3.1", 61 "nyc": "^10.3.2", 62 "object-inspect": "^1.13.1", 63 "safe-publish-latest": "^2.0.0", 64 "tape": "^5.7.5", 65 "typescript": "next" 66 }, 67 "engines": { 68 "node": ">= 0.4" 69 }, 70 "exports": { 71 ".": "./index.js", 72 "./package.json": "./package.json" 73 }, 74 "funding": { 75 "url": "https://github.com/sponsors/ljharb" 76 }, 77 "homepage": "https://github.com/inspect-js/which-collection#readme", 78 "keywords": [ 79 "map", 80 "set", 81 "weakmap", 82 "weakset", 83 "collection.es6", 84 "es2015" 85 ], 86 "license": "MIT", 87 "main": "index.js", 88 "name": "which-collection", 89 "publishConfig": { 90 "ignore": [ 91 ".github/workflows" 92 ] 93 }, 94 "repository": { 95 "type": "git", 96 "url": "git+https://github.com/inspect-js/which-collection.git" 97 }, 98 "scripts": { 99 "lint": "eslint --ext=js,mjs .", 100 "postlint": "tsc -p . && attw -P", 101 "posttest": "npx aud --production", 102 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 103 "prepack": "npmignore --auto --commentLines=autogenerated", 104 "prepublish": "not-in-publish || npm run prepublishOnly", 105 "prepublishOnly": "safe-publish-latest", 106 "pretest": "npm run lint", 107 "test": "npm run tests-only", 108 "tests-only": "nyc tape 'test/**/*.js'", 109 "version": "auto-changelog && git add CHANGELOG.md" 110 }, 111 "sideEffects": false, 112 "version": "1.0.2" 85 113 }
Note:
See TracChangeset
for help on using the changeset viewer.