-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 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
{
"name": "point3-typescript-saga",
"version": "0.1.31",
"devDependencies": {
"@types/jest": "^29.5.12",
"ts-jest": "^29.1.5",
"tsup": "^8.1.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"type": "commonjs",
"dependencies": {
"@types/lodash": "^4.17.7",
"@types/node-cron": "^3.0.11",
"async-mutex": "^0.5.0",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"node-cron": "^3.0.3"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "./",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}