generated from BYOJS/.template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
38
39
40
41
42
43
44
{
"name": "@byojs/locker",
"description": "Exclusive, stackable locking to control concurrent access to shared resource(s)",
"version": "0.0.2",
"exports": {
".": "./dist/locker.mjs"
},
"browser": {
"@byojs/locker": "./dist/locker.mjs"
},
"scripts": {
"build:all": "node scripts/build-all.js",
"build:gh-pages": "npm run build:all && node scripts/build-gh-pages.js",
"build": "npm run build:all",
"test:start": "npx http-server test/ -p 8080",
"test": "node --experimental-default-type=module test/cli.js",
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "npm run build:all"
},
"dependencies": {},
"devDependencies": {
"micromatch": "~4.0.8",
"recursive-readdir-sync": "~1.0.6",
"terser": "~5.31.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byojs/locker.git"
},
"keywords": [
"mutex",
"semaphore",
"lock",
"async",
"concurrency"
],
"bugs": {
"url": "https://github.com/byojs/locker/issues",
"email": "locker"
},
"homepage": "https://github.com/byojs/locker",
"author": "locker",
"license": "MIT"
}