-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.7 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
59
60
{
"name": "aws-cfn-stack-cleanup",
"version": "1.3.1",
"description": "An AWS Lambda that can be invoked as a custom resource from an AWS CloudFormation stack to clean up any left over stack resources such as S3 buckets, Log Groups, Sub-Stacks, etc...",
"main": "src/index.js",
"keywords": [
"aws",
"code-pipeline",
"cloudformation",
"cleanup",
"s3",
"cloudwatch",
"lambda",
"nodejs"
],
"author": "Xavier Thomas",
"license": "BSD-3-Clause",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "babel ./src -d dist --ignore **/*.test.js,**/mocks.js && cp README.md dist/README.md && cp LICENSE dist/LICENSE",
"lint": "eslint --fix ./src",
"cfn-lint": "cfn-lint cfn-stack-cleanup.yaml",
"lint.ci": "eslint ./src",
"mutate": "stryker run",
"precommit": "yarn audit && yarn lint.ci && yarn test",
"test": "jest --config=jest.config.json"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"dependencies": {
"cfn-response-promise": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/node": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@stryker-mutator/babel-transpiler": "^4.0.0",
"@stryker-mutator/core": "^6.3.0",
"@stryker-mutator/javascript-mutator": "^4.0.0",
"@stryker-mutator/jest-runner": "^6.3.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.2.2",
"jest-junit": "^14.0.1",
"jest-sonar": "^0.2.12",
"prettier": "^2.7.1"
},
"optionalDependencies": {
"aws-sdk": "^2.1248.0"
}
}