-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
73 lines (73 loc) · 1.49 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "local-web-server",
"version": "5.4.0",
"description": "A lean, modular web server for rapid full-stack development",
"repository": {
"type": "git",
"url": "git+https://github.com/lwsjs/local-web-server.git"
},
"author": "Lloyd Brookes <[email protected]>",
"bin": {
"ws": "bin/cli.js"
},
"type": "module",
"exports": "./index.js",
"license": "MIT",
"keywords": [
"dev",
"server",
"web",
"tool",
"front-end",
"development",
"cors",
"mime",
"rest",
"mock",
"api",
"proxy",
"lws",
"backend",
"frontend",
"full-stack",
"http-server",
"http",
"http2",
"https"
],
"engines": {
"node": ">=12.20"
},
"scripts": {
"test": "test-runner test/*.js",
"cover": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"files": [
"bin",
"lib",
"index.js"
],
"dependencies": {
"current-module-paths": "^1.1.1",
"lws": "^4.1.5",
"lws-basic-auth": "^2.0.0",
"lws-blacklist": "^3.0.0",
"lws-body-parser": "^3.0.1",
"lws-compress": "^3.1.0",
"lws-conditional-get": "^3.0.0",
"lws-cors": "^4.2.1",
"lws-index": "^3.1.1",
"lws-json": "^2.0.0",
"lws-log": "^3.0.0",
"lws-mime": "^2.0.0",
"lws-range": "^4.0.1",
"lws-request-monitor": "^2.0.0",
"lws-rewrite": "^4.0.0",
"lws-spa": "^4.1.1",
"lws-static": "^3.1.1"
},
"devDependencies": {
"node-fetch": "^3.3.2",
"test-runner": "^0.11.0"
}
}