forked from aws/aws-rfdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"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 ."
}
},
"devDependencies": {
"@aws-sdk/client-ssm": "^3.378.0",
"@aws-sdk/client-cloudformation": "^3.378.0",
"@aws-sdk/client-cloudwatch-logs": "^3.378.0",
"@aws-sdk/client-secrets-manager": "^3.378.0",
"@types/jest": "^27.5.2",
"@types/node": "18.11.19",
"aws-cdk-lib": "2.89.0",
"aws-sdk": "^2.1423.0",
"constructs": "^10.0.0",
"fs-extra": "^11.1.0",
"jest": "^29.6.2",
"jest-junit": "^15.0.0",
"lerna": "^7.1.4",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"typescript": "~5.1.6"
},
"workspaces": {
"packages": [
"examples/**",
"lambda-layers/",
"packages/*",
"packages/aws-rfdk/*",
"tools/*",
"integ"
]
}
}