-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "msgpack-response",
"version": "1.0.4",
"description": "ExpressJS msgpack response middleware",
"scripts": {
"test": "mocha --reporter spec --check-leaks --bail test/",
"coverage": "istanbul cover _mocha -- -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/sschizas/msgpack-response"
},
"keywords": [
"express",
"expressjs",
"msgpack",
"middleware",
"json",
"packing"
],
"author": "Stavros Schizas <[email protected]> (https://stavrosschizas.com)",
"contributors": [
"Stavros Schizas <[email protected]> (https://stavrosschizas.com)",
"Vassilios Karakoidas <[email protected]> (http://bkarak.wizhut.com)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sschizas/msgpack-response/issues"
},
"dependencies": {
"commander": "^6.2.0",
"lodash": "^4.17.4",
"msgpack": "^1.0.2"
},
"devDependencies": {
"assert": "^2.0.0",
"express": "^4.15.2",
"istanbul": "^0.4.5",
"mocha": "^8.2.1",
"supertest": "^6.0.1"
},
"files": [
"LICENSE.md",
"README.md",
"CHANGELOG.md",
"index.js"
],
"engines": {
"node": ">= 6.0"
},
"homepage": "https://github.com/sschizas/msgpack-response"
}