-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.44 KB
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
{
"name": "node-lambda",
"scripts": {
"build": "projen build",
"compile": "projen compile",
"default": "projen default",
"package": "projen package",
"post-compile": "projen post-compile",
"post-upgrade": "projen post-upgrade",
"pre-compile": "projen pre-compile",
"test": "projen test",
"test:watch": "projen test:watch",
"upgrade": "projen upgrade",
"projen": "projen"
},
"devDependencies": {
"esbuild": "^0.28.0",
"jest": "^29.7.0",
"jest-junit": "^17"
},
"dependencies": {
"tesseractocr": "^2.0.3"
},
"main": "lib/index.js",
"license": "UNLICENSED",
"publishConfig": {
"access": "public"
},
"version": "0.0.0",
"jest": {
"coverageProvider": "v8",
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"clover",
"cobertura",
"text"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"watchPathIgnorePatterns": [
"/node_modules/"
],
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/*(*.)@(spec|test).[jt]s?(x)"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-reports"
}
]
]
},
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
}