-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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-changeset-viewer",
"version": "0.0.5",
"description": "View the details of a CloudFormation ChangeSet (including nested ones!) in a human-friendly way",
"main": "index.mjs",
"type": "module",
"scripts": {
"types": "tsc",
"change": "changeset add",
"version": "changeset version",
"release": "changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trek10inc/cfn-changeset-viewer.git"
},
"keywords": [
"cfn",
"cloudformation",
"change",
"set",
"viewer",
"nested",
"stack"
],
"author": "Trek10, Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/trek10inc/cfn-changeset-viewer/issues"
},
"homepage": "https://github.com/trek10inc/cfn-changeset-viewer#readme",
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.556.0",
"chalk": "^4.1.2",
"yargs": "^17.6.2"
},
"bin": {
"cfn-changeset-viewer": "cli.mjs"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/yargs": "^17.0.32",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public"
}
}