-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "cfn-monitor",
"version": "3.0.0",
"description": "A tool for monitoring the progress of AWS CloudFormation stack events during the creation or update of a stack.",
"exports": "./index.js",
"type": "module",
"bin": {
"cfn-monitor": "index.js"
},
"scripts": {
"test": "c8 --check-coverage --all mocha",
"lint": "eslint && prettier --check .",
"format": "prettier --write . && eslint --fix"
},
"files": [
"lib/",
"index.js"
],
"keywords": [
"aws",
"cloudformation",
"cfn",
"event",
"cli"
],
"author": "Sami Jaktholm <[email protected]>",
"license": "MIT",
"repository": "sjakthol/cfn-monitor",
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.503.1",
"chalk": "^4.1.2",
"randomcolor": "^0.6.2"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"aws-sdk-client-mock": "^4.0.0",
"c8": "^10.1.2",
"chai": "^5.1.1",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"mocha": "^11.0.1",
"mock-stdin": "^1.0.0",
"prettier": "^3.2.5",
"sinon": "^19.0.2"
}
}