-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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
{
"name": "lambda-edge-server",
"description": "AWS CloudFront Lambda@Edge handler function emulator.",
"version": "0.1.3",
"main": "server.js",
"scripts": {
"lint": "eslint *.js test",
"test": "mocha --require test/mocha.env.js 'test/**/*.js'",
"start": "node server.js --handler"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lambda-lambda-lambda/lambda-edge-server.git"
},
"keywords": [
"javascript",
"nodejs",
"amazon",
"cloudfront",
"lambda",
"socket",
"server"
],
"bugs": {
"url": "https://github.com/lambda-lambda-lambda/lambda-edge-server/issues"
},
"homepage": "https://github.com/lambda-lambda-lambda/lambda-edge-server#readme",
"author": "Marc S. Brooks <[email protected]> (https://mbrooks.info)",
"license": "MIT",
"dependencies": {
"commander": "^10.0.1"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.146",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"chai-http": "^4.4.0",
"eslint": "^7.32.0",
"mocha": "^9.2.2",
"resnap": "^1.0.1"
},
"engines": {
"node": ">=16.0.0"
}
}