-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.81 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.81 KB
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
60
61
62
63
64
65
66
67
68
69
{
"name": "lambda-web-server",
"version": "0.1.11",
"description": "Local development tool for AWS Lambda",
"author": "Kengo Nakatsuka <kengo.nakatsuka@gmail.com>",
"bin": {
"lambda-web-server": "bin/cli"
},
"bugs": {
"url": "https://github.com/nak2k/node-lambda-web-server/issues"
},
"dependencies": {
"api-gateway-body-parser": "^0.1.1",
"caseless-get": "^0.1.0",
"chalk": "^4.1.2",
"express": "^4.17.1",
"hashed-port": "^0.1.3",
"lambda-spawn": "^0.2.0",
"open": "^8.2.1",
"split": "^1.0.1",
"type-is": "^1.6.18",
"yargs": "^17.1.1"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.119",
"@types/chalk": "^2.2.0",
"@types/express": "^4.17.13",
"@types/node": "^20.5.6",
"@types/split": "^1.0.0",
"@types/supertest": "^2.0.10",
"@types/tape": "^4.13.2",
"@types/type-is": "^1.6.3",
"@types/yargs": "^17.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"tape": "^5.6.6",
"ts-node": "^10.2.0",
"typescript": "^5.2.2",
"undici": "^5.23.0"
},
"homepage": "https://github.com/nak2k/node-lambda-web-server",
"keywords": [
"aws",
"lambda"
],
"license": "MIT",
"main": "lib",
"repository": {
"type": "git",
"url": "git+https://github.com/nak2k/node-lambda-web-server.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepublishOnly": "npm test",
"postpublish": "npm-sns",
"pretest": "run-s clean build",
"test": "run-s test:*",
"test:preprocessor": "DEBUG=* ts-node node_modules/.bin/tape test/test-preprocessor.ts",
"test:v1": "DEBUG=* ts-node node_modules/.bin/tape test/test-v1.ts",
"test:v2": "DEBUG=* ts-node node_modules/.bin/tape test/test-v2.ts",
"watch": "tsc -w"
},
"files": [
"README.md",
"bin/",
"lib/"
]
}