Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/es-to-primitive/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "es-to-primitive", 3 "version": "1.3.0", 4 "author": "Jordan Harband <ljharb@gmail.com>", 5 "funding": { 6 "url": "https://github.com/sponsors/ljharb" 7 }, 8 "description": "ECMAScript “ToPrimitive” algorithm. Provides ES5 and ES2015 versions.", 9 "license": "MIT", 10 "main": "index.js", 11 "scripts": { 12 "prepack": "npmignore --auto --commentLines=autogenerated", 13 "prepublish": "not-in-publish || npm run prepublishOnly", 14 "prepublishOnly": "safe-publish-latest", 15 "pretest": "npm run lint", 16 "test": "npm run tests-only", 17 "posttest": "npx npm@'>=10.2' audit --production", 18 "tests-only": "nyc tape 'test/**/*.js'", 19 "lint": "eslint --ext=js,mjs .", 20 "postlint": "tsc && attw -P", 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://github.com/ljharb/es-to-primitive.git" 27 }, 28 "keywords": [ 29 "primitive", 30 "abstract", 31 "ecmascript", 32 "es5", 33 "es6", 34 "es2015", 35 "toPrimitive", 36 "coerce", 37 "type", 38 "object", 39 "string", 40 "number", 41 "boolean", 42 "symbol", 43 "null", 44 "undefined" 45 ], 46 "dependencies": { 47 "is-callable": "^1.2.7", 48 "is-date-object": "^1.0.5", 49 "is-symbol": "^1.0.4" 50 }, 51 "devDependencies": { 52 "@arethetypeswrong/cli": "^0.17.0", 53 "@ljharb/eslint-config": "^21.1.1", 54 "@ljharb/tsconfig": "^0.2.0", 55 "@types/for-each": "^0.3.3", 56 "@types/function.prototype.name": "^1.1.3", 57 "@types/is-callable": "^1.1.2", 58 "@types/is-date-object": "^1.0.4", 59 "@types/is-symbol": "^1.0.2", 60 "@types/object-inspect": "^1.13.0", 61 "@types/object-is": "^1.1.0", 62 "@types/tape": "^5.6.4", 63 "auto-changelog": "^2.5.0", 64 "encoding": "^0.1.13", 65 "es-value-fixtures": "^1.5.0", 66 "eslint": "=8.8.0", 67 "for-each": "^0.3.3", 68 "function.prototype.name": "^1.1.6", 69 "npmignore": "^0.3.1", 70 "nyc": "^10.3.2", 71 "object-inspect": "^1.13.3", 72 "object-is": "^1.1.6", 73 "safe-publish-latest": "^2.0.0", 74 "tape": "^5.9.0", 75 "typescript": "next" 76 }, 77 "testling": { 78 "files": "test/index.js" 79 }, 80 "engines": { 81 "node": ">= 0.4" 82 }, 83 "auto-changelog": { 84 "output": "CHANGELOG.md", 85 "template": "keepachangelog", 86 "unreleased": false, 87 "commitLimit": false, 88 "backfillLimit": false, 89 "hideCredit": true, 90 "startingVersion": "1.2.2" 91 }, 92 "publishConfig": { 93 "ignore": [ 94 ".github/workflows" 95 ] 96 } 2 "_from": "es-to-primitive@^1.3.0", 3 "_id": "es-to-primitive@1.3.0", 4 "_inBundle": false, 5 "_integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", 6 "_location": "/es-to-primitive", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "es-to-primitive@^1.3.0", 12 "name": "es-to-primitive", 13 "escapedName": "es-to-primitive", 14 "rawSpec": "^1.3.0", 15 "saveSpec": null, 16 "fetchSpec": "^1.3.0" 17 }, 18 "_requiredBy": [ 19 "/es-abstract" 20 ], 21 "_resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", 22 "_shasum": "96c89c82cc49fd8794a24835ba3e1ff87f214e18", 23 "_spec": "es-to-primitive@^1.3.0", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/es-abstract", 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 "startingVersion": "1.2.2" 37 }, 38 "bugs": { 39 "url": "https://github.com/ljharb/es-to-primitive/issues" 40 }, 41 "bundleDependencies": false, 42 "dependencies": { 43 "is-callable": "^1.2.7", 44 "is-date-object": "^1.0.5", 45 "is-symbol": "^1.0.4" 46 }, 47 "deprecated": false, 48 "description": "ECMAScript “ToPrimitive” algorithm. Provides ES5 and ES2015 versions.", 49 "devDependencies": { 50 "@arethetypeswrong/cli": "^0.17.0", 51 "@ljharb/eslint-config": "^21.1.1", 52 "@ljharb/tsconfig": "^0.2.0", 53 "@types/for-each": "^0.3.3", 54 "@types/function.prototype.name": "^1.1.3", 55 "@types/is-callable": "^1.1.2", 56 "@types/is-date-object": "^1.0.4", 57 "@types/is-symbol": "^1.0.2", 58 "@types/object-inspect": "^1.13.0", 59 "@types/object-is": "^1.1.0", 60 "@types/tape": "^5.6.4", 61 "auto-changelog": "^2.5.0", 62 "encoding": "^0.1.13", 63 "es-value-fixtures": "^1.5.0", 64 "eslint": "=8.8.0", 65 "for-each": "^0.3.3", 66 "function.prototype.name": "^1.1.6", 67 "npmignore": "^0.3.1", 68 "nyc": "^10.3.2", 69 "object-inspect": "^1.13.3", 70 "object-is": "^1.1.6", 71 "safe-publish-latest": "^2.0.0", 72 "tape": "^5.9.0", 73 "typescript": "next" 74 }, 75 "engines": { 76 "node": ">= 0.4" 77 }, 78 "funding": { 79 "url": "https://github.com/sponsors/ljharb" 80 }, 81 "homepage": "https://github.com/ljharb/es-to-primitive#readme", 82 "keywords": [ 83 "primitive", 84 "abstract", 85 "ecmascript", 86 "es5", 87 "es6", 88 "es2015", 89 "toPrimitive", 90 "coerce", 91 "type", 92 "object", 93 "string", 94 "number", 95 "boolean", 96 "symbol", 97 "null", 98 "undefined" 99 ], 100 "license": "MIT", 101 "main": "index.js", 102 "name": "es-to-primitive", 103 "publishConfig": { 104 "ignore": [ 105 ".github/workflows" 106 ] 107 }, 108 "repository": { 109 "type": "git", 110 "url": "git://github.com/ljharb/es-to-primitive.git" 111 }, 112 "scripts": { 113 "lint": "eslint --ext=js,mjs .", 114 "postlint": "tsc && attw -P", 115 "posttest": "npx npm@'>=10.2' audit --production", 116 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"", 117 "prepack": "npmignore --auto --commentLines=autogenerated", 118 "prepublish": "not-in-publish || npm run prepublishOnly", 119 "prepublishOnly": "safe-publish-latest", 120 "pretest": "npm run lint", 121 "test": "npm run tests-only", 122 "tests-only": "nyc tape 'test/**/*.js'", 123 "version": "auto-changelog && git add CHANGELOG.md" 124 }, 125 "testling": { 126 "files": "test/index.js" 127 }, 128 "version": "1.3.0" 97 129 }
Note:
See TracChangeset
for help on using the changeset viewer.