-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
58 lines (58 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
{
"name": "lambda-warmer",
"version": "2.2.0",
"description": "Keep your Lambda functions warm",
"main": "index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "mocha --check-leaks --recursive",
"test-cov": "nyc --reporter=lcov mocha --check-leaks --recursive",
"test-ci": "npm run lint:check && nyc npm test && nyc report --reporter=text-lcov | ./node_modules/coveralls/bin/coveralls.js",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"dtslint": "dtslint types",
"prepublishOnly": "npm run lint:check && npm run test && npm run dtslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeremydaly/lambda-warmer.git"
},
"keywords": [
"lambda",
"cold start",
"aws",
"serverless",
"cloudwatch ping"
],
"author": "Jeremy Daly <[email protected]>",
"maintainers": [
{
"name": "Naor Peled <[email protected]>"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jeremydaly/lambda-warmer/issues"
},
"homepage": "https://github.com/jeremydaly/lambda-warmer#readme",
"devDependencies": {
"@aws-sdk/client-lambda": "^3.282.0",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"dtslint": "^4.2.1",
"eslint": "^5.16.0",
"mocha": "^9.2.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"rewire": "^6.0.0",
"sinon": "^6.3.5",
"typescript": "^4.9.4"
},
"files": [
"lib/",
"index.js",
"types/index.d.ts",
"LICENSE",
"README.md"
]
}