forked from mtth/avsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@circle/avsc",
"version": "5.4.11",
"description": "Avro for JavaScript",
"homepage": "https://github.com/mtth/avsc",
"keywords": [
"api",
"avdl",
"avpr",
"avro",
"avsc",
"binary",
"buffer",
"data",
"decoding",
"encoding",
"idl",
"interface",
"ipc",
"json",
"marshalling",
"message",
"protocol",
"rpc",
"schema",
"serde",
"serialization",
"type"
],
"files": [
"lib",
"etc/browser",
"types"
],
"main": "./lib",
"types": "./types",
"browser": {
"./lib": "./etc/browser/avsc.js",
"./lib/files": "./etc/browser/lib/files.js",
"crypto": "./etc/browser/lib/crypto.js"
},
"engines": {
"node": ">=0.11"
},
"scripts": {
"clean": "rm -rf coverage dist node_modules",
"cover": "nyc mocha",
"coverAndPublish": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"dist": "./etc/scripts/dist",
"perf": "./etc/scripts/perf etc/schemas/*",
"test": "mocha",
"zuul": "zuul --no-coverage -- test/*.js"
},
"devDependencies": {
"benchmark": "~2.1.4",
"coveralls": "^3.0.1",
"mocha": "^5.2.0",
"nyc": "~13.3.0",
"tmp": "^0.0.33"
},
"author": {
"name": "Matthieu Monsch",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mtth/avsc.git"
}
}