-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.11 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
56
57
58
{
"name": "redis-odm",
"version": "0.0.1",
"description": "redis object document mapping",
"keywords": [],
"main": "dist/redis-odm.js",
"files": [
"dist"
],
"author": "Bahman Asheghi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/asheghi/redis-odm"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/*.{js,ts}"
]
},
"dependencies": {
"ioredis": "^5.2.3",
"ulid": "^2.3.0"
},
"devDependencies": {
"@types/node": "^18.7.16",
"jest": "28",
"ts-jest": "^29.0.0",
"typescript": "^4.8.3"
}
}