-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "acquirelease",
"version": "1.0.1",
"description": "A small typed utility for bracket/transaction/scope-based resource acquisition and release",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "bun test --coverage",
"build": "bun build ./src/index.ts --outdir ./dist && tsc",
"prepare": "bun run test && bun run build"
},
"author": "Randy Lebeau <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SupremeTechnopriest/acquirelease.git"
},
"bugs": {
"url": "https://github.com/SupremeTechnopriest/acquirelease/issues"
},
"homepage": "https://github.com/SupremeTechnopriest/acquirelease#readme",
"keywords": [
"acquire-release",
"transaction",
"scope",
"bracket",
"lifecycle",
"management",
"resource",
"resource-management",
"resource-lifecycle",
"rollback",
"workflow",
"temporal"
],
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
}
}