-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 845 Bytes
/
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
{
"name": "micro-mw",
"version": "1.3.0",
"description": "a simple helper to add middleware to your zeit/micro service",
"main": "lib/index.js",
"scripts": {
"test": "ava test/index.js",
"coverage": "nyc ava",
"changelog": "auto-changelog"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mhamann/micro-mw.git"
},
"keywords": [
"micro",
"middleware",
"helper"
],
"author": "Matt Hamann <[email protected]> (https://mhamann.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mhamann/micro-mw/issues"
},
"homepage": "https://github.com/mhamann/micro-mw#readme",
"devDependencies": {
"auto-changelog": "^1.13.0",
"ava": "^1.4.1",
"node-mocks-http": "^1.7.3",
"nyc": "^14.0.0"
},
"dependencies": {
"micro": "^9.3.3"
}
}