forked from vercel/micro-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.18 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
{
"name": "micro-dev",
"version": "3.0.0",
"main": "./lib/index.js",
"files": [
"bin",
"lib"
],
"scripts": {
"test": "yarn run lint && ava",
"lint": "zeit-eslint --ext .jsx,.js .",
"lint-staged": "git diff --diff-filter=ACMRT --cached --name-only '*.js' '*.jsx' | xargs zeit-eslint"
},
"bin": {
"micro-dev": "./bin/micro-dev.js"
},
"repository": "zeit/micro-dev",
"license": "MIT",
"keywords": [
"micro",
"development",
"service",
"microservice",
"serverless",
"API"
],
"dependencies": {
"boxen": "1.3.0",
"chalk": "2.4.1",
"chokidar": "2.0.3",
"clipboardy": "1.2.3",
"debounce": "1.1.0",
"dotenv": "5.0.1",
"get-port": "3.2.0",
"ip": "1.1.5",
"jsome": "2.5.0",
"mri": "1.1.1",
"pkg-up": "2.0.0",
"pretty-error": "2.1.1",
"string-length": "2.0.0"
},
"devDependencies": {
"@zeit/eslint-config-node": "0.2.13",
"@zeit/git-hooks": "0.1.4",
"ava": "0.25.0",
"eslint": "4.19.1"
},
"peerDependencies": {
"micro": ">=9.0.0"
},
"eslintConfig": {
"extends": [
"@zeit/eslint-config-node"
]
},
"git": {
"pre-commit": "lint-staged"
}
}