-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
127 lines (127 loc) · 3.48 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@pulumi/cdk",
"version": "${VERSION}",
"description": "Pulumi/CDK Interop SDK",
"repository": {
"type": "git",
"url": "git+https://github.com/pulumi/pulumi-cdk.git"
},
"license": "Apache-2.0",
"main": "lib/index.js",
"bugs": {
"url": "https://github.com/pulumi/pulumi-cdk/issues"
},
"homepage": "https://github.com/pulumi/pulumi-cdk#readme",
"engines": {
"node": ">=8.13.0 || >=10.10.0"
},
"--": {
"resolutions-notes": {
"see": "https://stackoverflow.com/questions/77406363/error-err-require-esm-require-of-es-module-node-modules-wrap-ansi-index-js"
}
},
"resolutions": {
"@pulumi/pulumi": "3.145.0",
"wrap-ansi": "7.0.0",
"string-width": "4.1.0"
},
"devDependencies": {
"@aws-cdk/aws-apprunner-alpha": "2.20.0-alpha.0",
"@pulumi/aws": "6.66.2",
"@pulumi/aws-native": "1.23.0",
"@pulumi/docker": "4.5.8",
"@pulumi/docker-build": "0.0.8",
"@pulumi/pulumi": "3.145.0",
"@types/archiver": "^6.0.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.2",
"@types/mock-fs": "^4.13.4",
"@types/node": "^20.12.13",
"aws-cdk-lib": "2.156.0",
"constructs": "10.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.5.0",
"jest-junit": "^15",
"mock-fs": "^5.3.0",
"npm-check-updates": "^17.1.11",
"prettier": "^2.6.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typescript": "^5.4.5",
"typescript-eslint": "^7.16.1"
},
"peerDependencies": {
"@pulumi/aws": "^6.56.0",
"@pulumi/aws-native": "^1.7.0",
"@pulumi/docker": "^4.5.0",
"@pulumi/pulumi": "^3.136.0",
"aws-cdk-lib": "^2.20.0",
"constructs": "^10.0.111"
},
"dependencies": {
"@aws-cdk/cli-lib-alpha": "^2.161.1-alpha.0",
"@types/glob": "^8.1.0",
"archiver": "^7.0.1",
"cdk-assets": "^2.154.8",
"fast-deep-equal": "^3.1.3",
"fs-extra": "^11.2.0"
},
"scripts": {
"set-version": "sed -i.bak -e \"s/\\${VERSION}/$(pulumictl get version --language javascript)/g\" package.json && rm package.json.bak",
"build": "tsc --build && yarn docs && yarn format && yarn lint",
"watch": "tsc --build --watch",
"docs": "npx typedoc",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx,.ts,.tsx --fix --no-error-on-unmatched-pattern src",
"format": "./node_modules/.bin/prettier --write \"src/**/*.ts\" \"examples/**/*.ts\"",
"test": "jest --passWithNoTests --updateSnapshot",
"test:watch": "jest --watch",
"test-examples": "yarn link && cd examples && go test -timeout 2h -v ."
},
"jest": {
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"isolatedModules": true,
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
"<rootDir>/(tests|src)/**/*(*.)@(spec|test).ts?(x)"
],
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"clover",
"cobertura",
"text"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"watchPathIgnorePatterns": [
"/node_modules/"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-reports"
}
]
],
"preset": "ts-jest"
}
}