forked from vercel/micro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.22 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
{
"name": "micro",
"version": "9.3.3",
"description": "Asynchronous HTTP microservices",
"main": "./lib/index.js",
"files": [
"bin",
"lib"
],
"scripts": {
"test": "npm run lint && NODE_ENV=test nyc --check-coverage --lines 100 ava",
"lint": "zeit-eslint --ext .jsx,.js .",
"lint-staged": "git diff --diff-filter=ACMRT --cached --name-only '*.js' '*.jsx' | xargs zeit-eslint"
},
"bin": {
"micro": "./bin/micro.js"
},
"repository": "zeit/micro",
"keywords": [
"micro",
"service",
"microservice",
"serverless",
"API"
],
"license": "MIT",
"devDependencies": {
"@zeit/eslint-config-node": "0.2.13",
"@zeit/git-hooks": "0.1.4",
"ava": "0.23.0",
"eslint": "4.19.1",
"husky": "0.14.3",
"nyc": "11.3.0",
"request": "2.83.0",
"request-promise": "4.2.2",
"resumer": "0.0.0",
"rewire": "3.0.2",
"sinon": "4.4.3",
"test-listen": "1.0.2",
"then-sleep": "1.0.1"
},
"dependencies": {
"arg": "2.0.0",
"chalk": "2.4.0",
"content-type": "1.0.4",
"is-stream": "1.1.0",
"raw-body": "2.3.2"
},
"eslintConfig": {
"extends": [
"@zeit/eslint-config-node"
]
},
"git": {
"pre-commit": "lint-staged"
}
}