-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
45 lines (45 loc) · 1.21 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
{
"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": "2.0.0",
"author": {
"name": "James Power",
"email": "james.bruce.power@gmail.com"
},
"contributors": [
"Jeremiah Lu <jlu@uber.com>",
"Matt Lavin <matt.lavin@gmail.com>",
"Austin Kelleher <austin.kell47@gmail.com>",
"Martin Cizek <martin.cizek@socialbakers.com>",
"Xander Dumaine <xander.dumaine@inin.com>",
"Andrew Austin <andrewaclt@gmail.com>",
"Hannes Stockner <hannes.stockner@gmail.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/jamesbrucepower/node-avro-io.git"
},
"main": "./index",
"scripts": {
"test": "make test"
},
"dependencies": {
"buffer-crc32": "^0.2.5",
"int64-native": "^0.5.0",
"lodash": "^2.4.1",
"snappy": "^6.1.1"
},
"devDependencies": {
"mocha": "^3.1.0",
"should": "^4.4.2",
"jscoverage": "^0.5.9",
"buffertools": "^2.1.2",
"sprint": "^0.3.1",
"dtrace-provider": "^0.3.1"
},
"engines": {
"node": ">= 4.x",
"npm": ">= 1.4.x"
}
}