forked from keichi/binary-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 778 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 778 Bytes
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
{
"name": "binary-parser",
"version": "1.1.5",
"description": "Blazing-fast binary parser builder",
"main": "lib/binary_parser.js",
"devDependencies": {
"istanbul": "^0.3.14",
"mocha": "^2.2.5"
},
"scripts": {
"test": "mocha --reporter spec",
"cover": "istanbul cover --report html node_modules/.bin/_mocha"
},
"keywords": [
"binary",
"parser",
"decode",
"unpack",
"struct",
"buffer",
"bit"
],
"author": {
"name": "Keichi Takahashi",
"email": "keichi.t@me.com",
"url": "http://blog.keichi.net/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/Keichi/binary-parser.git"
},
"bugs": "http://github.com/Keichi/binary-parser/issues",
"dependencies": {}
}