-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.19 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
45
{
"name": "@mokuteki/propagated-transactions",
"version": "1.2.2",
"description": "Convenient wrapper to propagate and manage database transactions using AsyncLocalStorage",
"main": "lib/propagated-transaction.js",
"scripts": {
"test": "node --test test/suits/"
},
"types": "types/propagated-transaction.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/mokuteki225/propagated-transactions.git"
},
"keywords": [
"database",
"transaction",
"acid",
"async-local-storage"
],
"author": "Vladyslav Kondratiuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/mokuteki225/propagated-transactions/issues"
},
"homepage": "https://github.com/mokuteki225/propagated-transactions#readme",
"devDependencies": {
"@types/node": "^18.14.6",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"knex": "^2.4.2",
"pg": "^8.10.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"imports": {
"#root/*.js": "./*.js",
"#test/*.js": "./test/*.js"
},
"exports": "./lib/propagated-transaction.js",
"directories": {
"lib": "lib",
"test": "test"
}
}