forked from vercel/serve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1 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
{
"name": "serve",
"version": "11.3.2",
"description": "Static file serving and directory listing",
"scripts": {
"test": "yarn lint",
"lint": "zeit-eslint --ext .jsx,.js .",
"lint-staged": "git diff --diff-filter=ACMRT --cached --name-only '*.js' '*.jsx' | xargs zeit-eslint"
},
"files": [
"bin"
],
"repository": "zeit/serve",
"bin": {
"serve": "./bin/serve.js"
},
"keywords": [
"now",
"serve",
"micro",
"http-server"
],
"author": "leo",
"license": "MIT",
"devDependencies": {
"@zeit/eslint-config-node": "0.3.0",
"@zeit/git-hooks": "0.1.4",
"eslint": "5.4.0"
},
"eslintConfig": {
"extends": [
"@zeit/eslint-config-node"
]
},
"git": {
"pre-commit": "lint-staged"
},
"dependencies": {
"@zeit/schemas": "2.6.0",
"ajv": "6.5.3",
"arg": "2.0.0",
"boxen": "1.3.0",
"chalk": "2.4.1",
"clipboardy": "1.2.3",
"compression": "1.7.3",
"serve-handler": "6.1.3",
"update-check": "1.5.2"
}
}