forked from cdk8s-team/cdk8s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.44 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
{
"name": "root",
"version": "0.0.0",
"private": true,
"scripts": {
"bump": "tools/bump.sh",
"build": "lerna run build",
"test": "lerna run test",
"projen": "lerna run projen",
"package": "tools/pack.sh && tools/collect-dist.sh",
"integ": "test/run-against-dist test/test-all.sh",
"integ:update": "UPDATE_SNAPSHOTS=1 yarn integ",
"release-github": "tools/release-github.sh"
},
"workspaces": {
"packages": [
"packages/*",
"examples/**/*"
],
"nohoist": [
"cdk8s/yaml",
"cdk8s/yaml/**",
"cdk8s/json-stable-stringify",
"cdk8s/json-stable-stringify/**",
"cdk8s/fast-json-patch",
"cdk8s/fast-json-patch/**",
"cdk8s/follow-redirects",
"cdk8s/follow-redirects/**",
"cdk8s-plus-17/minimatch",
"cdk8s-plus-17/minimatch/**"
]
},
"devDependencies": {
"changelog-parser": "^2.8.0",
"jsii-release": "^0.2.3",
"lerna": "^3.22.1",
"semver": "7.3.2",
"standard-version": "^9.0.0",
"npm-check-updates": "10.2.1"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"preset": "ts-jest",
"testMatch": [
"**/__tests__/**/*.ts?(x)",
"**/?(*.)+(spec|test).ts?(x)"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.jest.json"
}
}
}
}