-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.73 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "novelworkernode",
"version": "1.0.0",
"description": "novel worker in node",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"unit-test": "jest --testPathIgnorePatterns=\"integration/|node_modules/|dist/\"",
"integration-test": "jest --testPathIgnorePatterns=\"src/|node_modules/|dist/\" --runInBand",
"docker-build": "docker build -t novelworkernode:latest ."
},
"author": "Xiang Rong Lin",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-dynamodb": "3.352.0",
"@aws-sdk/client-s3": "3.421.0",
"@aws-sdk/client-sqs": "3.352.0",
"@aws-sdk/s3-request-presigner": "3.363.0",
"@aws-sdk/util-dynamodb": "3.218.0",
"percollate": "2.2.0"
},
"overrides": {
"puppeteer": "20.7.1 "
},
"devDependencies": {
"@swc/core": "^1.3.9",
"@swc/jest": "^0.2.29",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.2.3",
"@types/node": "^20.3.1",
"jest": "^29.3.1",
"jest-each": "^29.5.0",
"typescript": "5.1.6"
},
"jest": {
"transform": {
"^.+\\.(t|j)s?$": [
"@swc/jest"
]
},
"transformIgnorePatterns": [
"/node_modules/(?!percollate|puppeteer|franc-all|trigram-utils|n-gram|collapse-white-space).+(js|jsx)$"
],
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"node_modules/",
"src/types"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts?$",
"testPathIgnorePatterns": [
"node_modules/",
"dist/"
],
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 75,
"lines": 75,
"statements": 75
}
},
"coverageReporters": [
"cobertura",
"json",
"lcov",
"text"
]
}
}