-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
52 lines (52 loc) · 1.49 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
{
"name": "sar-lambda-janitor",
"private": true,
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --config=jest.config.js",
"test:lint": "eslint .",
"package": "sam package --template-file template.yml --output-template-file packaged.yml --s3-bucket sar-lambda-janitor",
"publish": "sam publish --template packaged.yml --region us-east-1"
},
"author": "Lumigo LTD (https://lumigo.io)",
"license": "Apache 2",
"dependencies": {
"@dazn/lambda-powertools-logger": "^1.9.0",
"async-retry": "^1.2.3",
"aws-sdk": "^2.814.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.0.0",
"coveralls": "^3.0.2",
"eslint": "^5.13.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.0",
"jest": "^24.4.0",
"lint-staged": "^10.0.3",
"lodash": "^4.17.21"
},
"greenkeeper": {
"ignore": [
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}