-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
57
58
{
"name": "codepipeline-cloudformation-change-set-replace-s3",
"version": "0.2.0",
"description": "CodePipeline Custom Action to perform a CloudFormation ChangeSet Replace using S3.",
"scripts": {
"build": "webpack",
"clean": "rimraf ./dist",
"lint": "tslint --project tsconfig.json",
"test": "mocha --recursive --throw-deprecation --require ts-node/register \"src/**/*.test.ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/Giftbit/codepipeline-cloudformation-change-set-replace-s3"
},
"keywords": [],
"author": "Jamie Starke",
"contributors": [
{
"name": "Jamie Starke",
"email": "jamies@giftbit.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Giftbit/codepipeline-cloudformation-change-set-replace-s3/issues"
},
"homepage": "",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@types/aws-lambda": "8.10.33",
"@types/chai": "^4.2.4",
"@types/chai-as-promised": "^7.1.2",
"@types/jszip": "^3.1.6",
"@types/mocha": "^5.2.7",
"@types/node": "^10",
"@types/sinon": "^7.5.0",
"aws-sdk": "^2.814.0",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"file-loader": "^4.2.0",
"json-loader": "^0.5.4",
"mocha": "^6.2.2",
"rimraf": "^3.0.0",
"sinon": "^7.5.0",
"ts-loader": "^6.2.0",
"ts-node": "^8.4.1",
"tslint": "^5.7.0",
"typescript": "^3.6.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"zip-webpack-plugin": "^3.0.0"
},
"dependencies": {
"jszip": "^3.7.0"
}
}