-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.08 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
{
"name": "redis-orm-node",
"version": "0.0.14",
"description": "",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"type": "commonjs",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc --module commonjs",
"test": "jest",
"test:watch": "jest --watch",
"play:start": "ts-node-dev --respawn dev-playground/appDataSource"
},
"keywords": [
"redis",
"node-redis"
],
"repository": {
"type": "git",
"url": "https://github.com/nine-tail-net/redis-orm"
},
"author": {
"name": "nine-tail-net",
"email": "[email protected]"
},
"license": "MIT",
"peerDependencies": {
"redis": "^4.6.12"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.11.0",
"@types/uuid": "^9.0.8",
"env-cmd": "^10.1.0",
"npm-run-all": "^4.1.5",
"redis": "^4.6.12",
"reflect-metadata": "^0.2.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"jest": "^29.7.0",
"uuid": "^9.0.1"
}
}