forked from jamesbrucepower/node-avro-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"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.3.3",
"author": {
"name": "James Power",
"email": "james.bruce.power@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": {
"bytebuffer": "^4.1.0",
"lodash": "^2.4.1",
"long": "^2.3.0"
},
"devDependencies": {
"chai": "^3.3.0",
"karma": "^0.13.10",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.1",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.0",
"karma-safari-launcher": "^0.1.1",
"karma-source-map-support": "^1.1.0",
"karma-sourcemap-loader": "^0.3.6",
"metascript": "~0",
"mocha": "^2.1.0",
"should": "^7.1.0",
"utfx": "^1.0.1"
},
"engines": {
"node": ">= 0.10.x",
"npm": ">= 1.4.x"
}
}