CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json53 linesDownload Raw Back to p-limit
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	}52}53 
basant307/AI_Governance_Project · CoolFace