- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/get-intrinsic/package.json
rceaed42 r59329aa 1 1 { 2 "name": "get-intrinsic", 3 "version": "1.1.1", 4 "description": "Get and robustly cache all JS language-level intrinsics at first require time", 5 "main": "index.js", 6 "exports": { 7 ".": [ 8 { 9 "default": "./index.js" 10 }, 11 "./index.js" 12 ], 13 "./package.json": "./package.json" 14 }, 15 "scripts": { 16 "prelint": "evalmd README.md", 17 "lint": "eslint --ext=.js,.mjs .", 18 "pretest": "npm run lint", 19 "tests-only": "nyc tape 'test/**/*.js'", 20 "test": "npm run tests-only", 21 "posttest": "aud --production", 22 "version": "auto-changelog && git add CHANGELOG.md", 23 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" 24 }, 25 "repository": { 26 "type": "git", 27 "url": "git+https://github.com/ljharb/get-intrinsic.git" 28 }, 29 "keywords": [ 30 "javascript", 31 "ecmascript", 32 "es", 33 "js", 34 "intrinsic", 35 "getintrinsic", 36 "es-abstract" 37 ], 38 "author": "Jordan Harband <ljharb@gmail.com>", 39 "funding": { 40 "url": "https://github.com/sponsors/ljharb" 41 }, 42 "license": "MIT", 43 "bugs": { 44 "url": "https://github.com/ljharb/get-intrinsic/issues" 45 }, 46 "homepage": "https://github.com/ljharb/get-intrinsic#readme", 47 "devDependencies": { 48 "@ljharb/eslint-config": "^17.5.0", 49 "aud": "^1.1.3", 50 "auto-changelog": "^2.2.1", 51 "call-bind": "^1.0.2", 52 "es-abstract": "^1.18.0-next.2", 53 "es-value-fixtures": "^1.0.0", 54 "eslint": "^7.19.0", 55 "evalmd": "^0.0.19", 56 "foreach": "^2.0.5", 57 "has-bigints": "^1.0.1", 58 "make-async-function": "^1.0.0", 59 "make-async-generator-function": "^1.0.0", 60 "make-generator-function": "^2.0.0", 61 "nyc": "^10.3.2", 62 "object-inspect": "^1.9.0", 63 "tape": "^5.1.1" 64 }, 65 "auto-changelog": { 66 "output": "CHANGELOG.md", 67 "template": "keepachangelog", 68 "unreleased": false, 69 "commitLimit": false, 70 "backfillLimit": false, 71 "hideCredit": true 72 }, 73 "dependencies": { 74 "function-bind": "^1.1.1", 75 "has": "^1.0.3", 76 "has-symbols": "^1.0.1" 77 } 2 "_args": [ 3 [ 4 "get-intrinsic@1.1.1", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "get-intrinsic@1.1.1", 10 "_id": "get-intrinsic@1.1.1", 11 "_inBundle": false, 12 "_integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", 13 "_location": "/get-intrinsic", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "get-intrinsic@1.1.1", 19 "name": "get-intrinsic", 20 "escapedName": "get-intrinsic", 21 "rawSpec": "1.1.1", 22 "saveSpec": null, 23 "fetchSpec": "1.1.1" 24 }, 25 "_requiredBy": [ 26 "/call-bind" 27 ], 28 "_resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", 29 "_spec": "1.1.1", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Jordan Harband", 33 "email": "ljharb@gmail.com" 34 }, 35 "auto-changelog": { 36 "output": "CHANGELOG.md", 37 "template": "keepachangelog", 38 "unreleased": false, 39 "commitLimit": false, 40 "backfillLimit": false, 41 "hideCredit": true 42 }, 43 "bugs": { 44 "url": "https://github.com/ljharb/get-intrinsic/issues" 45 }, 46 "dependencies": { 47 "function-bind": "^1.1.1", 48 "has": "^1.0.3", 49 "has-symbols": "^1.0.1" 50 }, 51 "description": "Get and robustly cache all JS language-level intrinsics at first require time", 52 "devDependencies": { 53 "@ljharb/eslint-config": "^17.5.0", 54 "aud": "^1.1.3", 55 "auto-changelog": "^2.2.1", 56 "call-bind": "^1.0.2", 57 "es-abstract": "^1.18.0-next.2", 58 "es-value-fixtures": "^1.0.0", 59 "eslint": "^7.19.0", 60 "evalmd": "^0.0.19", 61 "foreach": "^2.0.5", 62 "has-bigints": "^1.0.1", 63 "make-async-function": "^1.0.0", 64 "make-async-generator-function": "^1.0.0", 65 "make-generator-function": "^2.0.0", 66 "nyc": "^10.3.2", 67 "object-inspect": "^1.9.0", 68 "tape": "^5.1.1" 69 }, 70 "exports": { 71 ".": [ 72 { 73 "default": "./index.js" 74 }, 75 "./index.js" 76 ], 77 "./package.json": "./package.json" 78 }, 79 "funding": { 80 "url": "https://github.com/sponsors/ljharb" 81 }, 82 "homepage": "https://github.com/ljharb/get-intrinsic#readme", 83 "keywords": [ 84 "javascript", 85 "ecmascript", 86 "es", 87 "js", 88 "intrinsic", 89 "getintrinsic", 90 "es-abstract" 91 ], 92 "license": "MIT", 93 "main": "index.js", 94 "name": "get-intrinsic", 95 "repository": { 96 "type": "git", 97 "url": "git+https://github.com/ljharb/get-intrinsic.git" 98 }, 99 "scripts": { 100 "lint": "eslint --ext=.js,.mjs .", 101 "posttest": "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 "prelint": "evalmd README.md", 104 "pretest": "npm run lint", 105 "test": "npm run tests-only", 106 "tests-only": "nyc tape 'test/**/*.js'", 107 "version": "auto-changelog && git add CHANGELOG.md" 108 }, 109 "version": "1.1.1" 78 110 }
Note:
See TracChangeset
for help on using the changeset viewer.