forked from vercel/serve
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.47 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.47 KB
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
74
{
"name": "serve",
"version": "6.4.1",
"description": "Static file serving and directory listing",
"scripts": {
"precommit": "lint-staged",
"lint": "xo",
"test": "npm run lint && NODE_ENV=test nyc ava"
},
"files": [
"bin",
"lib",
"assets",
"views"
],
"repository": "zeit/serve",
"main": "./lib/api.js",
"bin": {
"serve": "./bin/serve.js"
},
"engines": {
"node": ">=6.9.0"
},
"xo": {
"extends": "prettier"
},
"lint-staged": {
"*.js": [
"npm run lint",
"prettier --single-quote --no-semi --write",
"git add"
]
},
"keywords": [
"now",
"serve",
"micro",
"http-server"
],
"author": "leo",
"license": "MIT",
"devDependencies": {
"ava": "0.23.0",
"eslint-config-prettier": "2.7.0",
"husky": "0.14.3",
"lint-staged": "4.3.0",
"nyc": "11.3.0",
"prettier": "1.7.4",
"xo": "0.18.2"
},
"dependencies": {
"args": "3.0.7",
"basic-auth": "2.0.0",
"bluebird": "3.5.1",
"boxen": "1.2.2",
"chalk": "2.3.0",
"clipboardy": "1.1.4",
"dargs": "5.1.0",
"detect-port": "1.2.1",
"filesize": "3.5.11",
"fs-extra": "4.0.2",
"handlebars": "4.0.11",
"ip": "1.1.5",
"micro": "9.0.0",
"micro-compress": "1.0.0",
"mime-types": "2.1.17",
"node-version": "1.1.0",
"openssl-self-signed-certificate": "1.1.6",
"opn": "5.1.0",
"path-type": "3.0.0",
"send": "0.16.1",
"update-notifier": "2.3.0"
}
}