forked from renderedtext/agent-aws-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 703 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 703 Bytes
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
{
"name": "aws-semaphore-agent",
"version": "0.3.6",
"bin": {
"aws-semaphore-agent": "bin/aws-semaphore-agent.js"
},
"scripts": {
"bootstrap": "cdk bootstrap",
"build": "echo \"The build step is not required when using JavaScript!\" && exit 0",
"deploy": "cdk deploy --progress events",
"deploy:ci": "cdk deploy --require-approval never --progress events",
"destroy": "cdk destroy",
"destroy:ci": "cdk destroy --verbose --force",
"diff": "cdk diff",
"synth": "cdk synth",
"test": "jest"
},
"devDependencies": {
"jest": "^29.3.1"
},
"dependencies": {
"aws-cdk": "^2.91.0",
"aws-cdk-lib": "^2.91.0",
"constructs": "^10.2.69"
}
}