-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.77 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
{
"name": "cfn-drift-detector",
"version": "1.0.0",
"private": true,
"description": "Perform regular drift detection on every stacks and report drifts by email",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"build:layer": "mkdir -p ./dist/layer/nodejs && cp package.json ./dist/layer/nodejs && cp package-lock.json ./dist/layer/nodejs && cd ./dist/layer/nodejs && npm ci --only=production",
"build:src": "./build.js && tsc --noEmit",
"build": "npm run build:src && npm run build:layer"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BourgoisMickael/cfn-drift-detector.git"
},
"author": "Mickael Bourgois",
"license": "ISC",
"bugs": {
"url": "https://github.com/BourgoisMickael/cfn-drift-detector/issues"
},
"homepage": "https://github.com/BourgoisMickael/cfn-drift-detector#readme",
"devDependencies": {
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"esbuild": "^0.15.15",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"prettier": "^2.8.0",
"typescript": "^4.9.3"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.216.0",
"@aws-sdk/client-ses": "^3.222.0",
"@aws-sdk/client-sns": "^3.222.0",
"aws-xray-sdk-core": "^3.4.0"
}
}