-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 884 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
36
37
{
"name": "snappy-msgpack-stream",
"description": "Streams of framed Snappy-compressed MessagePack messages",
"main": "index.js",
"scripts": {
"test": "standard && tape test.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {
"length-prefixed-stream": "^1.5.1",
"msgpack-lite": "^0.1.26",
"pumpify": "^1.3.5",
"snappyjs": "^0.6.0",
"through2": "^2.0.3"
},
"keywords": [
"snappy",
"msgpack",
"stream",
"pipe",
"frame"
],
"author": "Klaus Trainer <[email protected]>",
"license": "MIT",
"devDependencies": {
"semantic-release": "^6.3.2",
"standard": "^10.0.2",
"tape": "^4.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/KlausTrainer/snappy-msgpack-stream.git"
},
"release": {
"branch": "main"
}
}