-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "serverless-plugin-warmup",
"version": "8.3.0",
"description": "Keep your lambdas warm during winter.",
"main": "src/index.js",
"scripts": {
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest test",
"test-with-coverage": "jest --coverage --collectCoverageFrom=src/**/*.js test"
},
"author": "Juanjo Diaz <juanjo.diazmo@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/juanjoDiaz/serverless-plugin-warmup.git"
},
"keywords": [
"serverless plugin warm up lambdas",
"serverless warmup",
"serverless plugin",
"lambda serverless",
"warm lambda",
"lambda coldstart",
"lambda cold"
],
"bugs": {
"url": "https://github.com/juanjoDiaz/serverless-plugin-warmup/issues"
},
"homepage": "https://github.com/juanjoDiaz/serverless-plugin-warmup",
"dependencies": {},
"devDependencies": {
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.24.2",
"husky": "^8.0.1",
"jest": "^29.1.2"
}
}