Changeset 59329aa for trip-planner-front/node_modules/p-locate
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- Location:
- trip-planner-front/node_modules/p-locate
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/p-locate/node_modules/p-limit/package.json
rceaed42 r59329aa 1 1 { 2 "name": "p-limit", 3 "version": "2.3.0", 4 "description": "Run multiple promise-returning & async functions with limited concurrency", 5 "license": "MIT", 6 "repository": "sindresorhus/p-limit", 7 "funding": "https://github.com/sponsors/sindresorhus", 8 "author": { 9 "name": "Sindre Sorhus", 10 "email": "sindresorhus@gmail.com", 11 "url": "sindresorhus.com" 12 }, 13 "engines": { 14 "node": ">=6" 15 }, 16 "scripts": { 17 "test": "xo && ava && tsd-check" 18 }, 19 "files": [ 20 "index.js", 21 "index.d.ts" 22 ], 23 "keywords": [ 24 "promise", 25 "limit", 26 "limited", 27 "concurrency", 28 "throttle", 29 "throat", 30 "rate", 31 "batch", 32 "ratelimit", 33 "task", 34 "queue", 35 "async", 36 "await", 37 "promises", 38 "bluebird" 39 ], 40 "dependencies": { 41 "p-try": "^2.0.0" 42 }, 43 "devDependencies": { 44 "ava": "^1.2.1", 45 "delay": "^4.1.0", 46 "in-range": "^1.0.0", 47 "random-int": "^1.0.0", 48 "time-span": "^2.0.0", 49 "tsd-check": "^0.3.0", 50 "xo": "^0.24.0" 51 } 2 "_args": [ 3 [ 4 "p-limit@2.3.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "p-limit@2.3.0", 10 "_id": "p-limit@2.3.0", 11 "_inBundle": false, 12 "_integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 13 "_location": "/p-locate/p-limit", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "p-limit@2.3.0", 19 "name": "p-limit", 20 "escapedName": "p-limit", 21 "rawSpec": "2.3.0", 22 "saveSpec": null, 23 "fetchSpec": "2.3.0" 24 }, 25 "_requiredBy": [ 26 "/p-locate" 27 ], 28 "_resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 29 "_spec": "2.3.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "author": { 32 "name": "Sindre Sorhus", 33 "email": "sindresorhus@gmail.com", 34 "url": "sindresorhus.com" 35 }, 36 "bugs": { 37 "url": "https://github.com/sindresorhus/p-limit/issues" 38 }, 39 "dependencies": { 40 "p-try": "^2.0.0" 41 }, 42 "description": "Run multiple promise-returning & async functions with limited concurrency", 43 "devDependencies": { 44 "ava": "^1.2.1", 45 "delay": "^4.1.0", 46 "in-range": "^1.0.0", 47 "random-int": "^1.0.0", 48 "time-span": "^2.0.0", 49 "tsd-check": "^0.3.0", 50 "xo": "^0.24.0" 51 }, 52 "engines": { 53 "node": ">=6" 54 }, 55 "files": [ 56 "index.js", 57 "index.d.ts" 58 ], 59 "funding": "https://github.com/sponsors/sindresorhus", 60 "homepage": "https://github.com/sindresorhus/p-limit#readme", 61 "keywords": [ 62 "promise", 63 "limit", 64 "limited", 65 "concurrency", 66 "throttle", 67 "throat", 68 "rate", 69 "batch", 70 "ratelimit", 71 "task", 72 "queue", 73 "async", 74 "await", 75 "promises", 76 "bluebird" 77 ], 78 "license": "MIT", 79 "name": "p-limit", 80 "repository": { 81 "type": "git", 82 "url": "git+https://github.com/sindresorhus/p-limit.git" 83 }, 84 "scripts": { 85 "test": "xo && ava && tsd-check" 86 }, 87 "version": "2.3.0" 52 88 } -
trip-planner-front/node_modules/p-locate/package.json
rceaed42 r59329aa 1 1 { 2 "name": "p-locate", 3 "version": "4.1.0", 4 "description": "Get the first fulfilled promise that satisfies the provided testing function", 5 "license": "MIT", 6 "repository": "sindresorhus/p-locate", 7 "author": { 8 "name": "Sindre Sorhus", 9 "email": "sindresorhus@gmail.com", 10 "url": "sindresorhus.com" 11 }, 12 "engines": { 13 "node": ">=8" 14 }, 15 "scripts": { 16 "test": "xo && ava && tsd" 17 }, 18 "files": [ 19 "index.js", 20 "index.d.ts" 21 ], 22 "keywords": [ 23 "promise", 24 "locate", 25 "find", 26 "finder", 27 "search", 28 "searcher", 29 "test", 30 "array", 31 "collection", 32 "iterable", 33 "iterator", 34 "race", 35 "fulfilled", 36 "fastest", 37 "async", 38 "await", 39 "promises", 40 "bluebird" 41 ], 42 "dependencies": { 43 "p-limit": "^2.2.0" 44 }, 45 "devDependencies": { 46 "ava": "^1.4.1", 47 "delay": "^4.1.0", 48 "in-range": "^1.0.0", 49 "time-span": "^3.0.0", 50 "tsd": "^0.7.2", 51 "xo": "^0.24.0" 52 } 2 "_args": [ 3 [ 4 "p-locate@4.1.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "p-locate@4.1.0", 10 "_id": "p-locate@4.1.0", 11 "_inBundle": false, 12 "_integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 13 "_location": "/p-locate", 14 "_phantomChildren": { 15 "p-try": "2.2.0" 16 }, 17 "_requested": { 18 "type": "version", 19 "registry": true, 20 "raw": "p-locate@4.1.0", 21 "name": "p-locate", 22 "escapedName": "p-locate", 23 "rawSpec": "4.1.0", 24 "saveSpec": null, 25 "fetchSpec": "4.1.0" 26 }, 27 "_requiredBy": [ 28 "/locate-path" 29 ], 30 "_resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 31 "_spec": "4.1.0", 32 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 33 "author": { 34 "name": "Sindre Sorhus", 35 "email": "sindresorhus@gmail.com", 36 "url": "sindresorhus.com" 37 }, 38 "bugs": { 39 "url": "https://github.com/sindresorhus/p-locate/issues" 40 }, 41 "dependencies": { 42 "p-limit": "^2.2.0" 43 }, 44 "description": "Get the first fulfilled promise that satisfies the provided testing function", 45 "devDependencies": { 46 "ava": "^1.4.1", 47 "delay": "^4.1.0", 48 "in-range": "^1.0.0", 49 "time-span": "^3.0.0", 50 "tsd": "^0.7.2", 51 "xo": "^0.24.0" 52 }, 53 "engines": { 54 "node": ">=8" 55 }, 56 "files": [ 57 "index.js", 58 "index.d.ts" 59 ], 60 "homepage": "https://github.com/sindresorhus/p-locate#readme", 61 "keywords": [ 62 "promise", 63 "locate", 64 "find", 65 "finder", 66 "search", 67 "searcher", 68 "test", 69 "array", 70 "collection", 71 "iterable", 72 "iterator", 73 "race", 74 "fulfilled", 75 "fastest", 76 "async", 77 "await", 78 "promises", 79 "bluebird" 80 ], 81 "license": "MIT", 82 "name": "p-locate", 83 "repository": { 84 "type": "git", 85 "url": "git+https://github.com/sindresorhus/p-locate.git" 86 }, 87 "scripts": { 88 "test": "xo && ava && tsd" 89 }, 90 "version": "4.1.0" 53 91 }
Note:
See TracChangeset
for help on using the changeset viewer.