-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.07 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
{
"name": "lesky",
"version": "2.0.1",
"description": "Lightweight Express-ish (Koa) Server - Type les not More!",
"main": "server/koa.js",
"type": "module",
"scripts": {
"dev": "nodemon server/cli.js --watch",
"start": "server/cli.js",
"test": "TEST=true ava",
"test:watch": "TEST=specs ava --watch --timeout=10m",
"test:cov": "TEST=specs c8 ava --timeout=10m"
},
"bin": {
"les": "./server/cli.js"
},
"files": [
"server",
"public",
"test",
".editorconfig",
".eslintrc.cjs",
".lesrc",
"ava.config.js",
"LICENSE"
],
"keywords": [
"les",
"koajs",
"server",
"cli",
"expressjs"
],
"author": "Richard Schloss",
"license": "MIT",
"dependencies": {
"glob": "^7.1.6",
"koa": "^2.13.1",
"koa-static": "^5.0.0",
"les-utils": "^2.0.0",
"minimist": "^1.2.5",
"node-netstat": "^1.8.0",
"socket.io": "^4.0.0"
},
"devDependencies": {
"ava": "^3.15.0",
"c8": "^7.6.0",
"eslint": "^7.22.0",
"nodemon": "^2.0.7"
},
"imports": {
"#@/*": "./*"
}
}