Changeset 79a0317 for imaps-frontend/node_modules/which-builtin-type
- Timestamp:
- 01/21/25 03:08:24 (4 weeks ago)
- Branches:
- main
- Parents:
- 0c6b92a
- Location:
- imaps-frontend/node_modules/which-builtin-type
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/which-builtin-type/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.2.1](https://github.com/inspect-js/which-builtin-type/compare/v1.2.0...v1.2.1) - 2024-12-12 9 10 ### Commits 11 12 - [meta] sort package.json [`8305bf9`](https://github.com/inspect-js/which-builtin-type/commit/8305bf9a47674564c84dde5856829444ac59e379) 13 - [actions] re-add finishers [`67140db`](https://github.com/inspect-js/which-builtin-type/commit/67140dba99e8f204c6f1abce315711fae4239032) 14 - [Dev Deps] update `@arethetypeswrong/cli`, `@ljharb/tsconfig`, `@types/function.prototype.name`, `@types/tape`, `has-symbols` [`5adff02`](https://github.com/inspect-js/which-builtin-type/commit/5adff02870f00eafe144250b0ea2181f59b0d337) 15 - [Deps] update `call-bind`, `is-date-object`, `is-regex`, `which-boxed-primitive` [`87922d3`](https://github.com/inspect-js/which-builtin-type/commit/87922d3a0a21ee2b0991d9f3832123f5ff149eed) 16 - [Refactor] use `call-bound` directly [`8f633bc`](https://github.com/inspect-js/which-builtin-type/commit/8f633bc7587f481877f3965fdf0c74885753d824) 17 - [Deps] update `is-regex`, `which-typed-array` [`a912742`](https://github.com/inspect-js/which-builtin-type/commit/a9127421b702943a57927bf3e4d867cdc5862419) 7 18 8 19 ## [v1.2.0](https://github.com/inspect-js/which-builtin-type/compare/v1.1.4...v1.2.0) - 2024-11-23 -
imaps-frontend/node_modules/which-builtin-type/index.js
r0c6b92a r79a0317 12 12 var isGeneratorFunction = require('is-generator-function'); 13 13 var isAsyncFunction = require('is-async-function'); 14 var callBound = require('call-b ind/callBound');14 var callBound = require('call-bound'); 15 15 var hasToStringTag = require('has-tostringtag/shams')(); 16 16 var toStringTag = hasToStringTag && Symbol.toStringTag; -
imaps-frontend/node_modules/which-builtin-type/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "which-builtin-type", 3 "version": "1.2.0", 4 "description": "What is the type of this builtin JS value?", 5 "main": "index.js", 6 "types": "index.d.ts", 7 "exports": { 8 ".": "./index.js", 9 "./package.json": "./package.json" 10 }, 11 "sideEffects": false, 12 "scripts": { 13 "prepack": "npmignore --auto --commentLines=autogenerated", 14 "prepublish": "not-in-publish || npm run prepublishOnly", 15 "prepublishOnly": "safe-publish-latest", 16 "prelint": "evalmd README.md", 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 "version": "auto-changelog && git add CHANGELOG.md", 24 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 25 }, 26 "repository": { 27 "type": "git", 28 "url": "git+https://github.com/inspect-js/which-builtin-type.git" 29 }, 30 "keywords": [ 31 "type", 32 "builtin", 33 "ecmascript" 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/which-builtin-type/issues" 42 }, 43 "homepage": "https://github.com/inspect-js/which-builtin-type#readme", 44 "engines": { 45 "node": ">= 0.4" 46 }, 47 "devDependencies": { 48 "@arethetypeswrong/cli": "^0.17.0", 49 "@ljharb/eslint-config": "^21.1.1", 50 "@ljharb/tsconfig": "^0.2.0", 51 "@types/call-bind": "^1.0.5", 52 "@types/for-each": "^0.3.3", 53 "@types/function.prototype.name": "^1.1.3", 54 "@types/has-symbols": "^1.0.2", 55 "@types/is-async-function": "^2.0.3", 56 "@types/is-date-object": "^1.0.4", 57 "@types/is-generator-function": "^1.0.3", 58 "@types/is-regex": "^1.0.2", 59 "@types/is-weakref": "^1.0.0", 60 "@types/make-arrow-function": "^1.2.2", 61 "@types/make-async-function": "^1.0.2", 62 "@types/object-inspect": "^1.13.0", 63 "@types/object.assign": "^4.1.0", 64 "@types/tape": "^5.6.4", 65 "@types/which-boxed-primitive": "^1.0.3", 66 "auto-changelog": "^2.5.0", 67 "available-typed-arrays": "^1.0.7", 68 "encoding": "^0.1.13", 69 "eslint": "=8.8.0", 70 "evalmd": "^0.0.19", 71 "for-each": "^0.3.3", 72 "has-bigints": "^1.0.2", 73 "has-symbols": "^1.0.3", 74 "in-publish": "^2.0.1", 75 "make-arrow-function": "^1.2.0", 76 "make-async-function": "^1.0.0", 77 "make-generator-function": "^2.0.0", 78 "npmignore": "^0.3.1", 79 "nyc": "^10.3.2", 80 "object-inspect": "^1.13.3", 81 "object.assign": "^4.1.5", 82 "safe-publish-latest": "^2.0.0", 83 "tape": "^5.9.0", 84 "typescript": "next" 85 }, 86 "auto-changelog": { 87 "output": "CHANGELOG.md", 88 "template": "keepachangelog", 89 "unreleased": false, 90 "commitLimit": false, 91 "backfillLimit": false, 92 "hideCredit": true 93 }, 94 "dependencies": { 95 "call-bind": "^1.0.7", 96 "function.prototype.name": "^1.1.6", 97 "has-tostringtag": "^1.0.2", 98 "is-async-function": "^2.0.0", 99 "is-date-object": "^1.0.5", 100 "is-finalizationregistry": "^1.1.0", 101 "is-generator-function": "^1.0.10", 102 "is-regex": "^1.1.4", 103 "is-weakref": "^1.0.2", 104 "isarray": "^2.0.5", 105 "which-boxed-primitive": "^1.0.2", 106 "which-collection": "^1.0.2", 107 "which-typed-array": "^1.1.15" 108 }, 109 "publishConfig": { 110 "ignore": [ 111 ".github/workflows" 112 ] 113 } 2 "_from": "which-builtin-type@^1.2.1", 3 "_id": "which-builtin-type@1.2.1", 4 "_inBundle": false, 5 "_integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==", 6 "_location": "/which-builtin-type", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "which-builtin-type@^1.2.1", 12 "name": "which-builtin-type", 13 "escapedName": "which-builtin-type", 14 "rawSpec": "^1.2.1", 15 "saveSpec": null, 16 "fetchSpec": "^1.2.1" 17 }, 18 "_requiredBy": [ 19 "/reflect.getprototypeof" 20 ], 21 "_resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz", 22 "_shasum": "89183da1b4907ab089a6b02029cc5d8d6574270e", 23 "_spec": "which-builtin-type@^1.2.1", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/reflect.getprototypeof", 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-builtin-type/issues" 39 }, 40 "bundleDependencies": false, 41 "dependencies": { 42 "call-bound": "^1.0.2", 43 "function.prototype.name": "^1.1.6", 44 "has-tostringtag": "^1.0.2", 45 "is-async-function": "^2.0.0", 46 "is-date-object": "^1.1.0", 47 "is-finalizationregistry": "^1.1.0", 48 "is-generator-function": "^1.0.10", 49 "is-regex": "^1.2.1", 50 "is-weakref": "^1.0.2", 51 "isarray": "^2.0.5", 52 "which-boxed-primitive": "^1.1.0", 53 "which-collection": "^1.0.2", 54 "which-typed-array": "^1.1.16" 55 }, 56 "deprecated": false, 57 "description": "What is the type of this builtin JS value?", 58 "devDependencies": { 59 "@arethetypeswrong/cli": "^0.17.1", 60 "@ljharb/eslint-config": "^21.1.1", 61 "@ljharb/tsconfig": "^0.2.2", 62 "@types/for-each": "^0.3.3", 63 "@types/function.prototype.name": "^1.1.4", 64 "@types/is-async-function": "^2.0.3", 65 "@types/is-date-object": "^1.0.4", 66 "@types/is-generator-function": "^1.0.3", 67 "@types/is-weakref": "^1.0.0", 68 "@types/make-arrow-function": "^1.2.2", 69 "@types/make-async-function": "^1.0.2", 70 "@types/object-inspect": "^1.13.0", 71 "@types/object.assign": "^4.1.0", 72 "@types/tape": "^5.6.5", 73 "@types/which-boxed-primitive": "^1.0.3", 74 "auto-changelog": "^2.5.0", 75 "available-typed-arrays": "^1.0.7", 76 "encoding": "^0.1.13", 77 "eslint": "=8.8.0", 78 "evalmd": "^0.0.19", 79 "for-each": "^0.3.3", 80 "has-bigints": "^1.0.2", 81 "has-symbols": "^1.1.0", 82 "in-publish": "^2.0.1", 83 "make-arrow-function": "^1.2.0", 84 "make-async-function": "^1.0.0", 85 "make-generator-function": "^2.0.0", 86 "npmignore": "^0.3.1", 87 "nyc": "^10.3.2", 88 "object-inspect": "^1.13.3", 89 "object.assign": "^4.1.5", 90 "safe-publish-latest": "^2.0.0", 91 "tape": "^5.9.0", 92 "typescript": "next" 93 }, 94 "engines": { 95 "node": ">= 0.4" 96 }, 97 "exports": { 98 ".": "./index.js", 99 "./package.json": "./package.json" 100 }, 101 "funding": { 102 "url": "https://github.com/sponsors/ljharb" 103 }, 104 "homepage": "https://github.com/inspect-js/which-builtin-type#readme", 105 "keywords": [ 106 "type", 107 "builtin", 108 "ecmascript" 109 ], 110 "license": "MIT", 111 "main": "index.js", 112 "name": "which-builtin-type", 113 "publishConfig": { 114 "ignore": [ 115 ".github/workflows" 116 ] 117 }, 118 "repository": { 119 "type": "git", 120 "url": "git+https://github.com/inspect-js/which-builtin-type.git" 121 }, 122 "scripts": { 123 "lint": "eslint --ext=js,mjs .", 124 "postlint": "tsc -P . && attw -P", 125 "posttest": "npx npm@'>=10.2' audit --production", 126 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 127 "prelint": "evalmd README.md", 128 "prepack": "npmignore --auto --commentLines=autogenerated", 129 "prepublish": "not-in-publish || npm run prepublishOnly", 130 "prepublishOnly": "safe-publish-latest", 131 "pretest": "npm run lint", 132 "test": "npm run tests-only", 133 "tests-only": "nyc tape 'test/**/*.js'", 134 "version": "auto-changelog && git add CHANGELOG.md" 135 }, 136 "sideEffects": false, 137 "types": "index.d.ts", 138 "version": "1.2.1" 114 139 }
Note:
See TracChangeset
for help on using the changeset viewer.