Changeset 79a0317 for imaps-frontend/node_modules/es-errors/package.json
- Timestamp:
- 01/21/25 03:08:24 (3 days ago)
- Branches:
- main
- Parents:
- 0c6b92a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/es-errors/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "es-errors", 3 "version": "1.3.0", 4 "description": "A simple cache for a few of the JS Error constructors.", 5 "main": "index.js", 6 "exports": { 7 ".": "./index.js", 8 "./eval": "./eval.js", 9 "./range": "./range.js", 10 "./ref": "./ref.js", 11 "./syntax": "./syntax.js", 12 "./type": "./type.js", 13 "./uri": "./uri.js", 14 "./package.json": "./package.json" 15 }, 16 "sideEffects": false, 17 "scripts": { 18 "prepack": "npmignore --auto --commentLines=autogenerated", 19 "prepublishOnly": "safe-publish-latest", 20 "prepublish": "not-in-publish || npm run prepublishOnly", 21 "pretest": "npm run lint", 22 "test": "npm run tests-only", 23 "tests-only": "nyc tape 'test/**/*.js'", 24 "posttest": "aud --production", 25 "prelint": "evalmd README.md", 26 "lint": "eslint --ext=js,mjs .", 27 "postlint": "tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)", 28 "version": "auto-changelog && git add CHANGELOG.md", 29 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 30 }, 31 "repository": { 32 "type": "git", 33 "url": "git+https://github.com/ljharb/es-errors.git" 34 }, 35 "keywords": [ 36 "javascript", 37 "ecmascript", 38 "error", 39 "typeerror", 40 "syntaxerror", 41 "rangeerror" 42 ], 43 "author": "Jordan Harband <ljharb@gmail.com>", 44 "license": "MIT", 45 "bugs": { 46 "url": "https://github.com/ljharb/es-errors/issues" 47 }, 48 "homepage": "https://github.com/ljharb/es-errors#readme", 49 "devDependencies": { 50 "@ljharb/eslint-config": "^21.1.0", 51 "@types/tape": "^5.6.4", 52 "aud": "^2.0.4", 53 "auto-changelog": "^2.4.0", 54 "eclint": "^2.8.1", 55 "eslint": "^8.8.0", 56 "evalmd": "^0.0.19", 57 "in-publish": "^2.0.1", 58 "npmignore": "^0.3.1", 59 "nyc": "^10.3.2", 60 "safe-publish-latest": "^2.0.0", 61 "tape": "^5.7.4", 62 "typescript": "next" 63 }, 64 "auto-changelog": { 65 "output": "CHANGELOG.md", 66 "template": "keepachangelog", 67 "unreleased": false, 68 "commitLimit": false, 69 "backfillLimit": false, 70 "hideCredit": true 71 }, 72 "publishConfig": { 73 "ignore": [ 74 ".github/workflows" 75 ] 76 }, 77 "engines": { 78 "node": ">= 0.4" 79 } 2 "_from": "es-errors@^1.3.0", 3 "_id": "es-errors@1.3.0", 4 "_inBundle": false, 5 "_integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 6 "_location": "/es-errors", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "es-errors@^1.3.0", 12 "name": "es-errors", 13 "escapedName": "es-errors", 14 "rawSpec": "^1.3.0", 15 "saveSpec": null, 16 "fetchSpec": "^1.3.0" 17 }, 18 "_requiredBy": [ 19 "/array.prototype.findlast", 20 "/array.prototype.tosorted", 21 "/arraybuffer.prototype.slice", 22 "/call-bind-apply-helpers", 23 "/data-view-buffer", 24 "/data-view-byte-length", 25 "/data-view-byte-offset", 26 "/define-data-property", 27 "/dunder-proto", 28 "/es-abstract", 29 "/es-iterator-helpers", 30 "/es-object-atoms", 31 "/es-set-tostringtag", 32 "/get-intrinsic", 33 "/get-symbol-description", 34 "/internal-slot", 35 "/reflect.getprototypeof", 36 "/regexp.prototype.flags", 37 "/safe-push-apply", 38 "/safe-regex-test", 39 "/set-function-length", 40 "/set-function-name", 41 "/set-proto", 42 "/side-channel", 43 "/side-channel-list", 44 "/side-channel-map", 45 "/side-channel-weakmap", 46 "/string.prototype.matchall", 47 "/typed-array-buffer" 48 ], 49 "_resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 50 "_shasum": "05f75a25dab98e4fb1dcd5e1472c0546d5057c8f", 51 "_spec": "es-errors@^1.3.0", 52 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/call-bind-apply-helpers", 53 "author": { 54 "name": "Jordan Harband", 55 "email": "ljharb@gmail.com" 56 }, 57 "auto-changelog": { 58 "output": "CHANGELOG.md", 59 "template": "keepachangelog", 60 "unreleased": false, 61 "commitLimit": false, 62 "backfillLimit": false, 63 "hideCredit": true 64 }, 65 "bugs": { 66 "url": "https://github.com/ljharb/es-errors/issues" 67 }, 68 "bundleDependencies": false, 69 "deprecated": false, 70 "description": "A simple cache for a few of the JS Error constructors.", 71 "devDependencies": { 72 "@ljharb/eslint-config": "^21.1.0", 73 "@types/tape": "^5.6.4", 74 "aud": "^2.0.4", 75 "auto-changelog": "^2.4.0", 76 "eclint": "^2.8.1", 77 "eslint": "^8.8.0", 78 "evalmd": "^0.0.19", 79 "in-publish": "^2.0.1", 80 "npmignore": "^0.3.1", 81 "nyc": "^10.3.2", 82 "safe-publish-latest": "^2.0.0", 83 "tape": "^5.7.4", 84 "typescript": "next" 85 }, 86 "engines": { 87 "node": ">= 0.4" 88 }, 89 "exports": { 90 ".": "./index.js", 91 "./eval": "./eval.js", 92 "./range": "./range.js", 93 "./ref": "./ref.js", 94 "./syntax": "./syntax.js", 95 "./type": "./type.js", 96 "./uri": "./uri.js", 97 "./package.json": "./package.json" 98 }, 99 "homepage": "https://github.com/ljharb/es-errors#readme", 100 "keywords": [ 101 "javascript", 102 "ecmascript", 103 "error", 104 "typeerror", 105 "syntaxerror", 106 "rangeerror" 107 ], 108 "license": "MIT", 109 "main": "index.js", 110 "name": "es-errors", 111 "publishConfig": { 112 "ignore": [ 113 ".github/workflows" 114 ] 115 }, 116 "repository": { 117 "type": "git", 118 "url": "git+https://github.com/ljharb/es-errors.git" 119 }, 120 "scripts": { 121 "lint": "eslint --ext=js,mjs .", 122 "postlint": "tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)", 123 "posttest": "aud --production", 124 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 125 "prelint": "evalmd README.md", 126 "prepack": "npmignore --auto --commentLines=autogenerated", 127 "prepublish": "not-in-publish || npm run prepublishOnly", 128 "prepublishOnly": "safe-publish-latest", 129 "pretest": "npm run lint", 130 "test": "npm run tests-only", 131 "tests-only": "nyc tape 'test/**/*.js'", 132 "version": "auto-changelog && git add CHANGELOG.md" 133 }, 134 "sideEffects": false, 135 "version": "1.3.0" 80 136 }
Note:
See TracChangeset
for help on using the changeset viewer.