-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1007 Bytes
/
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": "@tranjs/core",
"version": "1.0.2",
"description": "Node.js transaction management framework inspired by Spring's `@Transactional` annotation.",
"scripts": {
"build": "lerna run build",
"test": "lerna run test",
"publish": "lerna run test && npm run build && lerna publish"
},
"repository": {
"type": "git",
"url": "https://github.com/asheswook/tranjs.git"
},
"keywords": [
"transaction",
"transactional",
"typeorm",
"orm",
"database",
"query"
],
"engines": {
"node": ">=16.4.0"
},
"author": "asheswook",
"license": "LGPL-2.1-only",
"bugs": {
"url": "https://github.com/asheswook/tranjs/issues"
},
"homepage": "https://github.com/asheswook/tranjs#readme",
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^8.1.9",
"typescript": "^4.5.0",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
},
"dependencies": {
"reflect-metadata": "^0.2.2"
}
}