forked from juanjoDiaz/serverless-plugin-warmup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "serverless-plugin-warmup",
"version": "4.9.0",
"description": "Keep your lambdas warm during winter.",
"main": "src/index.js",
"scripts": {
"lint": "eslint '**/*.js'",
"lint:fix": "eslint --fix '**/*.js'",
"test": "jest test",
"test-with-coverage": "jest --coverage --collectCoverageFrom=src/**/*.js test",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"author": "Juanjo Diaz <[email protected]>",
"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": {
"coveralls": "^3.1.0",
"eslint": "^7.15",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.5",
"jest": "^26.6.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
}
}