forked from mdecoleman/cloudformation-changeset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1023 Bytes
/
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
{
"name": "cloudformation-changeset",
"version": "1.0.0",
"description": "GitHub Action that creates, deletes and executes CloudFormation change sets",
"main": "index.js",
"scripts": {
"package": "npx ncc build src/main.js -o dist",
"test": "npx mocha ./**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdecoleman/cloudformation-create-changeset.git"
},
"keywords": [
"github",
"actions",
"pull request",
"branch name"
],
"bugs": {
"url": "https://github.com/mdecoleman/cloudformation-create-changesetissues"
},
"homepage": "https://github.com/mdecoleman/cloudformation-create-changeset#readme",
"author": "Matthew Coleman <matthewdecoleman@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.0",
"aws-sdk": "^2.586.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5",
"dotenv": "^8.2.0",
"mocha": "^6.2.2",
"should": "^13.2.3",
"sinon": "^7.5.0"
}
}