forked from odavid/typeorm-transactional-cls-hooked
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
46
47
48
49
50
51
52
53
54
55
{
"name": "typeorm-transactional-cls-hooked",
"version": "0.1.8",
"description": "A Transactional Method Decorator for typeorm that uses cls-hooked to handle and propagate transactions between different repositories and service methods. Inpired by Spring Trasnactional Annotation and Sequelize CLS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Ohad David",
"email": "[email protected]"
},
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": ""
},
"tags": [
"typescript",
"typescript-orm",
"typeorm",
"orm",
"cls-hooked",
"transaction",
"isolation",
"decorator"
],
"license": "MIT",
"scripts": {
"lint": "tslint -p tsconfig.json -c tslint.json ./src/**/*.ts",
"clean": "rm -rf ./dist",
"build": "yarn clean && tsc",
"typedoc": "typedoc --out ./docs src/**.ts"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"cls-hooked": "^4.2.2"
},
"devDependencies": {
"@types/cls-hooked": "^4.2.1",
"@types/jest": "^23.3.2",
"prettier": "^1.14.3",
"reflect-metadata": "^0.1.12",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typedoc": "^0.12.0",
"typeorm": "^0.2.8",
"typescript": "^3.0.3"
},
"peerDependencies": {
"reflect-metadata": ">= 0.1.12",
"typeorm": ">= 0.2.8"
}
}