-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@chriscdn/promise-semaphore",
"version": "2.0.10",
"description": "Limit or throttle the simultaneous execution of asynchronous code in separate iterations of the event loop.",
"repository": "https://github.com/chriscdn/promise-semaphore",
"author": "Christopher Meyer <[email protected]>",
"license": "MIT",
"type": "module",
"source": "./src/index.ts",
"main": "./lib/promise-semaphore.cjs",
"module": "./lib/promise-semaphore.module.js",
"__unpkg": "./lib/promise-semaphore.umd.js",
"exports": {
"types": "./lib/index.d.ts",
"require": "./lib/promise-semaphore.cjs",
"default": "./lib/promise-semaphore.modern.js"
},
"types": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib/ && microbundle --format modern,esm,cjs",
"dev": "microbundle watch",
"test": "vitest"
},
"devDependencies": {
"microbundle": "^0.15.1",
"vitest": "^3.0.7"
},
"keywords": [
"promise",
"semaphore",
"lock",
"mutex",
"async",
"throttle"
],
"dependencies": {}
}