forked from ArmaanT/cdkactions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.23 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
{
"name": "root",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "lerna run build",
"test": "lerna run test",
"projen": "lerna run projen",
"package": "tools/pack.sh && tools/collect-dist.sh",
"integration": "tests/run-against-dist tests/test-all.sh",
"integration:update": "UPDATE_SNAPSHOTS=1 yarn integration"
},
"workspaces": {
"packages": [
"packages/*",
"examples/**/*"
],
"nohoist": [
"cdkactions/ts-dedent",
"cdkactions/ts-dedent/**",
"cdkactions/js-yaml",
"cdkactions/js-yaml/**",
"cdkactions/yaml",
"cdkactions/yaml/**"
]
},
"devDependencies": {
"changelog-parser": "^2.8.0",
"codecov": "^3.8.1",
"jsii-release": "^0.2.3",
"lerna": "^3.22.1",
"semver": "7.3.2",
"standard-version": "^9.0.0"
},
"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"
}
}
}
}