-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "snappy-msgpack-channels",
"description": "Multiplexed negotiated streams of framed Snappy-compressed MessagePack messages.",
"main": "index.js",
"scripts": {
"test": "standard && node node_modules/istanbul/lib/cli.js cover -- lab -vl && istanbul check-coverage",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"snappy",
"msgpack",
"stream",
"pipe",
"frame",
"multiplexing",
"negotiation"
],
"author": "Klaus Trainer <[email protected]>",
"license": "ISC",
"dependencies": {
"multiplex": "^6.7.0",
"pumpify": "^1.3.5",
"snappy-msgpack-stream": "^4.0.0"
},
"devDependencies": {
"istanbul": "^0.4.5",
"code": "^4.0.0",
"lab": "^14.1.0",
"standard": "^10.0.2",
"semantic-release": "^6.3.6"
},
"repository": {
"type": "git",
"url": "https://github.com/KlausTrainer/snappy-msgpack-channels.git"
},
"release": {
"branch": "main"
},
"version": "0.0.0-development"
}