-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "merry",
"version": "5.5.2",
"description": "Modular http framework",
"main": "index.js",
"bin": {
"merry": "./pretty.js"
},
"scripts": {
"deps": "dependency-check . --ignore-module http2 && dependency-check . --extra --no-dev --entry pretty.js",
"start": "node example | ./pretty.js",
"test": "standard && npm run deps && nyc tap test/*.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"repository": "shipharbor/merry",
"keywords": [
"http",
"framework",
"modular",
"http-framework"
],
"license": "MIT",
"dependencies": {
"envobj": "^1.0.2",
"fast-safe-stringify": "^1.1.3",
"from2-string": "^1.1.0",
"json-stream-to-object": "^1.1.0",
"log-http": "^1.0.0",
"pino": "^4.0.0",
"pino-colada": "^1.4.0",
"pump": "^1.0.1",
"server-router": "^5.2.0"
},
"devDependencies": {
"dependency-check": "^2.5.1",
"dev-null": "^0.1.1",
"get-server-port": "^1.0.0",
"nyc": "^10.0.0",
"request": "^2.79.0",
"spok": "^0.8.1",
"standard": "^8.0.0",
"tap": "^10.0.2",
"tape": "^4.6.2"
}
}