forked from jamesbrucepower/node-avro-io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 844 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 844 Bytes
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
{
"name": "node-avro-io",
"description": "This will allow you to encode / decode avro binary format to / from json format, it supports both deflate and snappy compressions and supports node streams",
"version": "0.1.1",
"author": {
"name": "James Power",
"email": "james.bruce.power@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jamesbrucepower/node-avro-io.git"
},
"main": "./index",
"scripts": {
"test": "make test"
},
"dependencies": {
"underscore": "latest",
"snappy": "latest",
"buffer-crc32": "~0.1.1"
},
"devDependencies": {
"mocha": "latest",
"should": "latest",
"jscoverage": "latest",
"buffertools": "latest",
"sprint": "latest",
"dtrace-provider": "latest"
},
"engines": {
"node": "latest",
"npm": "latest"
}
}