-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 818 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 818 Bytes
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
{
"name": "typeorm-optimistic-lock",
"version": "1.0.0",
"description": "TypeORM helper for optimistic lock persistance",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "tsx test.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"typeorm",
"optimistic",
"lock"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:darky/typeorm-optimistic-lock.git"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"author": "Vladislav Botvin",
"license": "MIT",
"peerDependencies": {
"typeorm": "^0.2.45 || ^0.3.14"
},
"devDependencies": {
"@types/node": "^18.15.11",
"pg": "^8.10.0",
"reflect-metadata": "^0.1.13",
"tsx": "^3.12.6",
"typescript": "^5.0.4"
}
}