-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathpackage.json
67 lines (67 loc) · 1.58 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
{
"name": "@aws-cdk/spec2cdk",
"private": true,
"version": "0.0.0",
"description": "Generate L1 resources from @aws-cdk/aws-service-specs",
"repository": {
"type": "git",
"url": "https://github.com/aws/aws-cdk.git",
"directory": "tools/@aws-cdk/spec2cdk"
},
"bin": {
"cfn2ts": "bin/cfn2ts",
"spec2cdk": "bin/spec2cdk"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "cdk-build",
"watch": "cdk-watch",
"lint": "cdk-lint",
"test": "cdk-test",
"pkglint": "pkglint -f",
"build+test": "yarn build && yarn test",
"build+extract": "yarn build",
"build+test+extract": "yarn build+test",
"build+test+package": "yarn build+test"
},
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com",
"organization": true
},
"license": "Apache-2.0",
"dependencies": {
"@aws-cdk/aws-service-spec": "^0.0.64",
"@aws-cdk/service-spec-importers": "^0.0.31",
"@aws-cdk/service-spec-types": "^0.0.64",
"@cdklabs/tskb": "^0.0.3",
"@cdklabs/typewriter": "^0.0.3",
"camelcase": "^6",
"fs-extra": "^9",
"yargs": "^16.2.0"
},
"devDependencies": {
"@aws-cdk/cdk-build-tools": "0.0.0",
"@aws-cdk/pkglint": "0.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^18",
"jest": "^29.7.0"
},
"keywords": [
"aws",
"cdk"
],
"homepage": "https://github.com/aws/aws-cdk",
"engines": {
"node": ">= 14.15.0"
},
"ubergen": {
"exclude": true
},
"pkglint": {
"exclude": [
"dependencies/cdk-point-dependencies"
]
}
}