-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 935 Bytes
/
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
{
"private": true,
"workspaces": [
"*gogen*",
"examples/*"
],
"scripts": {
"prepare": "yarn build",
"build": "yarn workspaces foreach run build",
"dev": "yarn workspace gogen run build:esbuild --watch",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch --notify"
},
"jest": {
"preset": "es-jest",
"collectCoverageFrom": [
"gogen/lib/**",
"!**/.gogenrc*"
],
"modulePathIgnorePatterns": [
"/examples/.*/dist",
"/examples/.*/template",
"/gogen/test/fixtures/.*"
]
},
"resolutions": {
"object.assign": "file:./gogen/alias/object.assign",
"readable-stream": "file:./gogen/alias/readable-stream"
},
"devDependencies": {
"@types/glob-parent": "^5.1.1",
"@types/jest": "^27.0.1",
"es-jest": "^1.3.0",
"jest": "^27.2.0",
"typescript": "^4.4.3"
},
"packageManager": "[email protected]"
}