forked from xxczaki/fastic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 967 Bytes
/
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
{
"name": "fastic",
"description": "Fast & Lightweight CLI HTTP server",
"version": "1.6.1",
"bin": {
"fastic": "./fastic.js"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/xxczaki/fastic.git"
},
"author": {
"name": "Antoni Kepinski",
"email": "[email protected]",
"url": "https://kepinski.me"
},
"license": "MIT",
"keywords": [
"fastic",
"server",
"cli",
"http",
"fast",
"nodejs",
"static",
"web",
"site",
"website"
],
"devDependencies": {
"xo": "*"
},
"dependencies": {
"boxen": "^4.1.0",
"chalk": "^2.4.2",
"clipboardy": "^2.1.0",
"directory-exists": "^2.0.1",
"meow": "^5.0.0",
"open": "^6.4.0",
"turbo-http": "^0.3.2",
"v8-compile-cache": "^2.1.0"
},
"scripts": {
"test": "xo"
},
"xo": {
"rules": {
"handle-callback-err": 0,
"import/no-unassigned-import": 0
}
}
}