-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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
{
"name": "binary-encoder",
"version": "0.4.0",
"description": "Fast and consistent binary encoding of data structures.",
"engines": {
"node": ">=8.9.0"
},
"main": "index.js",
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"test": "node test.js | node node_modules/faucet/bin/cmd",
"docs": "node node_modules/jsdoc/jsdoc.js -c jsdoc.json",
"benchmark": "node benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walasek/node-binary-encoder.git"
},
"keywords": [
"nodejs",
"binary",
"encoding"
],
"author": "Karol Walasek <coreconviction@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/walasek/node-binary-encoder/issues"
},
"homepage": "https://github.com/walasek/node-binary-encoder#readme",
"devDependencies": {
"benchmark": "^2",
"docdash": "^1",
"faucet": "0.0.3",
"glob": "^8",
"jsdoc": "^3",
"nyc": "^15",
"protocol-buffers": "^5",
"zora": "^3"
},
"dependencies": {
"debug": "^4",
"varint": "^6"
}
}