-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
77 lines (77 loc) · 2.23 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "auto-remediate",
"version": "2.0.5",
"description": "Auto Remediate",
"main": "Orchestrator.js",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"coverage": "npm run test -- --coverage --silent",
"lint": "eslint '**/*.js' --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"sls:deploy": "npm prune --production && serverless deploy --force"
},
"author": "Mike Rahmati",
"contributors": [
"Edmund Cong"
],
"repository": {
"type": "git",
"url": "ssh://git@github.com:cloudconformity/auto-remediate"
},
"license": "MIT",
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.490.0",
"@aws-sdk/client-cloudtrail": "^3.490.0",
"@aws-sdk/client-config-service": "^3.490.0",
"@aws-sdk/client-ec2": "^3.496.0",
"@aws-sdk/client-guardduty": "^3.496.0",
"@aws-sdk/client-iam": "^3.490.0",
"@aws-sdk/client-kinesis": "^3.496.0",
"@aws-sdk/client-kms": "^3.496.0",
"@aws-sdk/client-lambda": "^3.496.0",
"@aws-sdk/client-organizations": "^3.497.0",
"@aws-sdk/client-rds": "^3.497.0",
"@aws-sdk/client-redshift": "^3.496.0",
"@aws-sdk/client-s3": "^3.490.0",
"@aws-sdk/client-sqs": "^3.496.0",
"@aws-sdk/client-sts": "^3.496.0",
"@aws-sdk/util-retry": "^3.374.0",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@conformity/commitlint-config-conformity": "^1.2.3",
"aws-sdk-client-mock": "^3.0.1",
"aws-sdk-client-mock-jest": "^3.0.1",
"dotenv": "^10.0.0",
"eslint": "^7.11.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^22.13.6",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"lodash.clonedeep": "^4.5.0",
"serverless": "^3.27.0",
"serverless-plugin-split-stacks": "^1.11.3",
"serverless-stack-termination-protection": "^2.0.2"
},
"engines": {
"node": "^18",
"npm": "^9"
},
"lint-staged": {
"**/*.js": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
}
}