forked from aws/aws-rfdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "aws-rfdk",
"version": "1.2.0",
"license": "Apache-2.0",
"author": {
"name": "Amazon Web Services",
"url": "https://aws.amazon.com",
"organization": true
},
"repository": {
"type": "git",
"url": "https://github.com/aws/aws-rfdk.git",
"directory": ""
},
"private": true,
"scripts": {
"build": "./build.sh",
"clean": "./scripts/clean-stale-files.sh && lerna run clean && bash ./clean.sh",
"package": "lerna run package",
"release": "standard-version"
},
"standard-version": {
"scripts": {
"prebump": "echo $(node -pe \"require('./lerna.json').version\")",
"precommit": "git add ."
}
},
"resolutions-json5": "json5 <= 2.2.1 has a security vulnerability, and is a transitive dep of several packages. Remove the resolution when able.",
"resolutions": {
"json5": "^2.2.2"
},
"devDependencies": {
"@aws-sdk/client-ssm": "^3.300.0",
"@aws-sdk/client-cloudformation": "^3.299.0",
"@aws-sdk/client-cloudwatch-logs": "^3.359.0",
"@aws-sdk/client-secrets-manager": "^3.359.0",
"@types/jest": "^27.5.2",
"@types/node": "^18.6.2",
"aws-cdk-lib": "2.70.0",
"aws-sdk": "^2.1391.0",
"constructs": "^10.0.0",
"fs-extra": "^11.1.0",
"jest": "^27.5.1",
"jest-junit": "^15.0.0",
"lerna": "^6.6.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"typescript": "~5.1.3"
},
"workspaces": {
"packages": [
"examples/**",
"lambda-layers/",
"packages/*",
"packages/aws-rfdk/*",
"tools/*",
"integ"
]
}
}