-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
70 lines (70 loc) · 1.72 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
{
"name": "lws",
"author": "Lloyd Brookes <75pound@gmail.com>",
"version": "4.2.0",
"description": "A lean, modular web server for rapid full-stack development",
"repository": {
"type": "git",
"url": "git+https://github.com/lwsjs/lws.git"
},
"license": "MIT",
"type": "module",
"bin": {
"lws": "bin/cli.js"
},
"exports": {
".": "./index.js",
"./lib/cli-app.mjs": "./lib/cli-app.js",
"./lib/view/cli-view.mjs": "./lib/view/cli-view.js"
},
"keywords": [
"lws",
"server",
"http",
"http2",
"https",
"backend",
"http-server",
"dev",
"web"
],
"engines": {
"node": ">=12.20"
},
"scripts": {
"test": "test-runner test/*.js test/internals/*.js",
"docs": "jsdoc2md -lib/middleware-plugin.js > doc/middleware-plugin.md && jsdoc2md --private index.js > doc/lws.md && jsdoc2md lib/view/view-plugin.js > doc/view-plugin.md && jsdoc2md lib/config.js > doc/config.md"
},
"files": [
"index.js",
"ssl",
"lib",
"bin"
],
"dependencies": {
"@75lb/deep-merge": "^1.1.2",
"ansi-escape-sequences": "^6.2.2",
"array-back": "^6.2.2",
"byte-size": "^9.0.0",
"command-line-args": "^6.0.0",
"command-line-usage": "^7.0.3",
"create-mixin": "^3.0.0",
"current-module-paths": "^1.1.1",
"koa": "^2.15.3",
"load-module": "^5.0.0",
"open": "^8.4.2",
"qrcode-terminal": "^0.12.0",
"typical": "^7.1.1",
"walk-back": "^5.1.0"
},
"devDependencies": {
"jsdoc-to-markdown": "^8.0.3",
"lws-static": "^3.1.0",
"node-fetch": "^3.3.2",
"sleep-anywhere": "^2.1.1",
"test-runner": "^0.11.0"
},
"contributors": [
"Tiago Stutz <tiagostutz@gmail.com.br> (https://github.com/labbsr0x)"
]
}