-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
39 lines (39 loc) · 905 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
38
39
{
"name": "snappy-stream",
"version": "3.0.2",
"description": "Compress data over a Stream using the snappy framing format",
"main": "index.js",
"scripts": {
"test": "tap test/*-test.js"
},
"keywords": [
"snappy",
"stream",
"framing"
],
"author": "David Björklund <[email protected]>",
"license": "MIT",
"devDependencies": {
"async-benchmark": "^1.0.0",
"tap": "^11.0.1"
},
"dependencies": {
"bl": "^1.0.0",
"buffer-alloc": "^1.2.0",
"buffer-equal": "1.0.0",
"buffer-from": "^1.1.1",
"fast-crc32c": "^1.0.1",
"snappy": "^6.0.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/kesla/node-snappy-stream.git"
},
"bugs": {
"url": "https://github.com/kesla/node-snappy-stream/issues"
},
"homepage": "https://github.com/kesla/node-snappy-stream"
}