-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 950 Bytes
/
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
{
"name": "bin-parser",
"version": "1.0.1",
"description": "General binary file parser",
"homepage": "https://github.com/jfjlaros/bin-parser",
"files": [
"javascript"
],
"main": "javascript/index.js",
"bin": {
"bin_parser": "javascript/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/jfjlaros/bin-parser.git"
},
"keywords": [
"binary",
"general",
"parser"
],
"author": "Jeroen F.J. Laros <[email protected]>",
"license": "MIT",
"dependencies": {
"argparse": "^1.0.3",
"buffer-extend-split": "^0.0.0",
"iconv-lite": "^0.4.13",
"js-yaml": "^3.3.1",
"python-struct": "^1.0.6"
},
"bugs": {
"url": "https://github.com/jfjlaros/bin-parser/issues"
},
"directories": {
"example": "examples",
"test": "tests"
},
"devDependencies": {},
"year": "2015"
}