forked from lwsjs/local-web-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.44 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
{
"name": "local-web-server",
"version": "2.6.1",
"description": "The modular web server for productive full-stack development",
"bin": {
"ws": "./bin/cli.js"
},
"license": "MIT",
"keywords": [
"dev",
"server",
"web",
"tool",
"front-end",
"development",
"cors",
"mime",
"rest",
"mock",
"api",
"proxy"
],
"engines": {
"node": ">=7.6"
},
"scripts": {
"test": "test-runner test/*.js",
"docs": "jsdoc2md -p list index.js lib/*.js > doc/api.md; echo",
"cover": "nyc --reporter=text-lcov test-runner test/*.js | coveralls"
},
"repository": "https://github.com/lwsjs/local-web-server",
"author": "Lloyd Brookes <[email protected]>",
"files": [
"bin",
"lib",
"index.js"
],
"dependencies": {
"lws": "^1.3.0",
"lws-basic-auth": "^0.1.1",
"lws-blacklist": "^0.3.0",
"lws-body-parser": "^0.2.4",
"lws-compress": "^0.2.1",
"lws-conditional-get": "^0.3.4",
"lws-cors": "^1.0.0",
"lws-index": "^0.4.0",
"lws-json": "^0.3.2",
"lws-log": "^0.3.2",
"lws-mime": "^0.2.2",
"lws-mock-response": "^0.5.1",
"lws-range": "^1.1.0",
"lws-request-monitor": "^0.1.5",
"lws-rewrite": "^0.4.1",
"lws-spa": "^0.3.0",
"lws-static": "^0.5.0",
"node-version-matches": "^1.0.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"jsdoc-to-markdown": "^4.0.1",
"req-then": "^0.6.4",
"test-runner": "^0.5.0"
}
}