Changeset 79a0317 for imaps-frontend/node_modules/p-limit
- 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/p-limit/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "p-limit", 3 "version": "3.1.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": "https://sindresorhus.com" 12 }, 13 "engines": { 14 "node": ">=10" 15 }, 16 "scripts": { 17 "test": "xo && ava && tsd" 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 "yocto-queue": "^0.1.0" 42 }, 43 "devDependencies": { 44 "ava": "^2.4.0", 45 "delay": "^4.4.0", 46 "in-range": "^2.0.0", 47 "random-int": "^2.0.1", 48 "time-span": "^4.0.0", 49 "tsd": "^0.13.1", 50 "xo": "^0.35.0" 51 } 2 "_from": "p-limit@^3.0.2", 3 "_id": "p-limit@3.1.0", 4 "_inBundle": false, 5 "_integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 6 "_location": "/p-limit", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "p-limit@^3.0.2", 12 "name": "p-limit", 13 "escapedName": "p-limit", 14 "rawSpec": "^3.0.2", 15 "saveSpec": null, 16 "fetchSpec": "^3.0.2" 17 }, 18 "_requiredBy": [ 19 "/p-locate" 20 ], 21 "_resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 22 "_shasum": "e1daccbe78d0d1388ca18c64fea38e3e57e3706b", 23 "_spec": "p-limit@^3.0.2", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/p-locate", 25 "author": { 26 "name": "Sindre Sorhus", 27 "email": "sindresorhus@gmail.com", 28 "url": "https://sindresorhus.com" 29 }, 30 "bugs": { 31 "url": "https://github.com/sindresorhus/p-limit/issues" 32 }, 33 "bundleDependencies": false, 34 "dependencies": { 35 "yocto-queue": "^0.1.0" 36 }, 37 "deprecated": false, 38 "description": "Run multiple promise-returning & async functions with limited concurrency", 39 "devDependencies": { 40 "ava": "^2.4.0", 41 "delay": "^4.4.0", 42 "in-range": "^2.0.0", 43 "random-int": "^2.0.1", 44 "time-span": "^4.0.0", 45 "tsd": "^0.13.1", 46 "xo": "^0.35.0" 47 }, 48 "engines": { 49 "node": ">=10" 50 }, 51 "files": [ 52 "index.js", 53 "index.d.ts" 54 ], 55 "funding": "https://github.com/sponsors/sindresorhus", 56 "homepage": "https://github.com/sindresorhus/p-limit#readme", 57 "keywords": [ 58 "promise", 59 "limit", 60 "limited", 61 "concurrency", 62 "throttle", 63 "throat", 64 "rate", 65 "batch", 66 "ratelimit", 67 "task", 68 "queue", 69 "async", 70 "await", 71 "promises", 72 "bluebird" 73 ], 74 "license": "MIT", 75 "name": "p-limit", 76 "repository": { 77 "type": "git", 78 "url": "git+https://github.com/sindresorhus/p-limit.git" 79 }, 80 "scripts": { 81 "test": "xo && ava && tsd" 82 }, 83 "version": "3.1.0" 52 84 }
Note:
See TracChangeset
for help on using the changeset viewer.