forked from lumigo-io/SAR-Propagate-CFN-Tags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "sar-propagate-cfn-tags",
"private": true,
"version": "1.0.0",
"description": "SAR app to propagate CloudFormation's stack tags to resources that are currently not propagated automatically - e.g. CloudWatch Logs.",
"main": "index.js",
"scripts": {
"codecov": "codecov",
"test": "jest --config=jest.config.js",
"test:lint": "eslint .",
"package": "sam package --template-file template.yml --output-template-file packaged.yml --s3-bucket sar-propagate-cfn-tags",
"publish": "sam publish --template packaged.yml --region us-east-1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lumigo-io/SAR-Propagate-CFN-Tags.git"
},
"author": "Lumigo LTD (https://lumigo.io)",
"license": "Apache 2",
"bugs": {
"url": "https://github.com/lumigo-io/SAR-Propagate-CFN-Tags/issues"
},
"homepage": "https://github.com/lumigo-io/SAR-Propagate-CFN-Tags#readme",
"dependencies": {
"@dazn/lambda-powertools-logger": "^1.9.0",
"@hapi/joi": "^15.1.1",
"async-retry": "^1.2.3",
"aws-sdk": "^2.418.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.0.0",
"codecov": "^3.6.5",
"coveralls": "^3.0.2",
"eslint": "^5.13.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.0",
"jest": "^24.4.0",
"lint-staged": "^9.1.0",
"lodash": "^4.17.15"
},
"greenkeeper": {
"ignore": [
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}