-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.5 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
{
"name": "@xoi/serverless-log-keeper",
"version": "1.0.1",
"description": "Serverless Framework plugin that adds a deletion retain policy on aws lambda logs",
"main": "dist/index.js",
"repository": "[email protected]:xoeye/serverless-log-keeper.git",
"homepage": "https://github.com/xoeye/serverless-log-keeper",
"bugs": {
"url": "https://github.com/xoeye/serverless-log-keeper/issues",
"email": "[email protected]"
},
"author": "josh duncan <[email protected]>",
"license": "Apache-2.0",
"files": [
"dist"
],
"scripts": {
"pre-commit": "lint-staged",
"lint": "eslint src",
"build": "rm -rf dist && tsc",
"test": "mocha src",
"test:coverage": "nyc --reporter=lcov mocha",
"prepare": "husky install"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"prettier-eslint-cli": "^5.0.1",
"serverless": "^2.60.1",
"sinon": "^14.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"serverless": ">= 1.15.0 <4"
},
"engines": {
"node": ">=16.0"
},
"keywords": [
"serverless",
"sls",
"aws",
"cloudwatch",
"log groups",
"logs",
"lambda"
]
}