-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathpackage.json
111 lines (111 loc) · 2.61 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
{
"name": "@aws-cdk/integ-runner",
"description": "CDK Integration Testing Tool",
"version": "0.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"integ-runner": "bin/integ-runner"
},
"scripts": {
"build": "cdk-build",
"lint": "cdk-lint",
"package": "cdk-package",
"awslint": "cdk-awslint",
"pkglint": "pkglint -f",
"test": "cdk-test",
"integ": "integ-runner",
"watch": "cdk-watch",
"build+test": "yarn build && yarn test",
"build+test+package": "yarn build+test && yarn package",
"compat": "cdk-compat",
"build+extract": "yarn build",
"build+test+extract": "yarn build+test"
},
"cdk-package": {
"bundle": {
"entryPoints": [
"lib/index.js",
"lib/workers/extract/index.js"
],
"externals": {
"optionalDependencies": [
"fsevents"
],
"dependencies": [
"@aws-cdk/aws-service-spec",
"aws-cdk"
]
},
"allowedLicenses": [
"Apache-2.0",
"MIT",
"BSD-3-Clause",
"ISC",
"BSD-2-Clause",
"0BSD"
],
"dontAttribute": "^@aws-cdk/|^@cdklabs/|^cdk-assets$",
"test": "bin/integ-runner --version"
}
},
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com",
"organization": true
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/cdk-build-tools": "0.0.0",
"aws-cdk-lib": "0.0.0",
"@aws-cdk/pkglint": "0.0.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.12",
"@types/mock-fs": "^4.13.4",
"@types/workerpool": "^6.4.7",
"@types/yargs": "^15.0.19",
"constructs": "^10.0.0",
"mock-fs": "^4.14.0",
"jest": "^29.7.0",
"ts-node": "^10.9.2"
},
"dependencies": {
"chokidar": "^3.6.0",
"@aws-cdk/cloud-assembly-schema": "0.0.0",
"@aws-cdk/cloudformation-diff": "0.0.0",
"@aws-cdk/cx-api": "0.0.0",
"@aws-cdk/aws-service-spec": "^0.1.3",
"cdk-assets": "0.0.0",
"@aws-cdk/cdk-cli-wrapper": "0.0.0",
"aws-cdk": "0.0.0",
"chalk": "^4",
"fs-extra": "^9.1.0",
"workerpool": "^6.5.1",
"yargs": "^16.2.0"
},
"repository": {
"url": "https://github.com/aws/aws-cdk.git",
"type": "git",
"directory": "packages/@aws-cdk/integ-runner"
},
"keywords": [
"aws",
"cdk"
],
"homepage": "https://github.com/aws/aws-cdk",
"engines": {
"node": ">= 14.15.0"
},
"nozem": {
"ostools": [
"unzip",
"diff",
"rm"
]
},
"stability": "experimental",
"maturity": "experimental",
"publishConfig": {
"tag": "latest"
}
}