forked from vercel/micro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.61 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "micro",
"version": "7.3.3",
"description": "Asynchronous HTTP microservices",
"main": "./lib/server.js",
"files": [
"bin",
"lib"
],
"scripts": {
"precommit": "lint-staged",
"lint": "xo",
"test": "npm run lint && NODE_ENV=test nyc ava"
},
"xo": {
"ignores": [
"examples/**/*"
],
"extends": "prettier"
},
"lint-staged": {
"*.js": [
"npm run lint",
"prettier --single-quote --no-semi --write",
"git add"
]
},
"bin": {
"micro": "./bin/micro.js"
},
"repository": "zeit/micro",
"keywords": [
"micro",
"service",
"microservice",
"serverless",
"API"
],
"author": {
"name": "Zeit, Inc.",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/zeit/micro/issues"
},
"homepage": "https://github.com/zeit/micro#readme",
"devDependencies": {
"ava": "0.19.1",
"coveralls": "2.13.1",
"eslint-config-prettier": "2.0.0",
"husky": "0.13.3",
"lint-staged": "3.5.1",
"nyc": "11.0.1",
"prettier": "1.3.1",
"request": "2.81.0",
"request-promise": "4.2.1",
"resumer": "0.0.0",
"test-listen": "1.0.2",
"then-sleep": "1.0.1",
"xo": "0.18.2"
},
"dependencies": {
"args": "3.0.2",
"async-to-gen": "1.3.3",
"bluebird": "3.5.0",
"boxen": "1.1.0",
"chalk": "1.1.3",
"clipboardy": "1.1.2",
"get-port": "3.1.0",
"ip": "1.1.5",
"is-async-supported": "1.2.0",
"isstream": "0.1.2",
"media-typer": "0.3.0",
"node-version": "1.0.0",
"raw-body": "2.2.0",
"update-notifier": "2.1.0"
}
}