-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathpackage.json
90 lines (90 loc) · 2.45 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
{
"name": "@aws-cdk/cdk-build-tools",
"private": true,
"version": "0.0.0",
"description": "Tools package with shared build scripts for CDK packages",
"repository": {
"type": "git",
"url": "https://github.com/aws/aws-cdk.git",
"directory": "tools/@aws-cdk/cdk-build-tools"
},
"bin": {
"cdk-build": "bin/cdk-build",
"cdk-compat": "bin/cdk-compat",
"cdk-copy": "bin/cdk-copy",
"cdk-watch": "bin/cdk-watch",
"cdk-test": "bin/cdk-test",
"cdk-package": "bin/cdk-package",
"cdk-awslint": "bin/cdk-awslint",
"cdk-lint": "bin/cdk-lint"
},
"scripts": {
"build": "tsc -b && chmod +x bin/cdk-build && chmod +x bin/cdk-test && chmod +x bin/cdk-watch && chmod +x bin/cdk-awslint && chmod +x bin/cdk-lint && pkglint && eslint . --ext=.ts",
"watch": "tsc -b -w",
"pkglint": "pkglint -f",
"test": "echo success",
"build+test+package": "yarn build+test",
"build+test": "yarn build && yarn test",
"build+extract": "yarn build",
"build+test+extract": "yarn build+test"
},
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com",
"organization": true
},
"license": "Apache-2.0",
"devDependencies": {
"@aws-cdk/pkglint": "0.0.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.12",
"@types/semver": "^7.5.8",
"@types/yargs": "^15.0.19",
"jest-resolve": "^29.7.0"
},
"main": "lib/index.js",
"dependencies": {
"@aws-cdk/eslint-plugin": "0.0.0",
"@aws-cdk/yarn-cling": "0.0.0",
"@aws-cdk/node-bundle": "0.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"awslint": "0.0.0",
"chalk": "^4",
"eslint": "^7.32.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^24.7.0",
"fs-extra": "^9.1.0",
"glob": "^7.2.3",
"jest": "^29.7.0",
"jest-junit": "^13.2.0",
"jsii": "~5.4.23",
"jsii-rosetta": "~5.4.23",
"jsii-pacmak": "1.101.0",
"jsii-reflect": "1.101.0",
"markdownlint-cli": "^0.41.0",
"nyc": "^15.1.0",
"semver": "^7.6.2",
"ts-jest": "^29.1.5",
"typescript": "~5.4.5",
"yargs": "^16.2.0"
},
"keywords": [
"aws",
"cdk"
],
"homepage": "https://github.com/aws/aws-cdk",
"engines": {
"node": ">= 14.15.0"
},
"nozem": {
"ostools": [
"chmod"
]
},
"ubergen": {
"exclude": true
}
}