-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
71 lines (71 loc) · 1.46 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
71
{
"name": "avsc",
"version": "6.0.0-rc.1",
"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": [
"etc/browser",
"lib",
"types/index.d.ts"
],
"main": "./lib",
"types": "./types",
"browser": {
"./lib": "./etc/browser/avsc.js",
"./lib/files": "./etc/browser/lib/files.js",
"./lib/platform": "./etc/browser/lib/platform.js"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"check-types": "tsc --strict --noEmit types/test/*.ts",
"clean": "rm -rf coverage node_modules",
"cover": "nyc mocha -- --ui tdd",
"lint": "eslint etc/ lib/ test/ \"etc/scripts/**\"",
"perf": "node --expose-gc ./etc/scripts/perf etc/schemas/*",
"test": "mocha --ui tdd --reporter dot"
},
"devDependencies": {
"@types/node": "^22.5.5",
"benchmark": "~2.1.4",
"eslint": "^8.30.0",
"mocha": "^10.2.0",
"nyc": "~15.0.0",
"tmp": "^0.1.0",
"typescript": "^5.6.2"
},
"author": {
"name": "Matthieu Monsch",
"email": "mtth@apache.org"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mtth/avsc.git"
}
}