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
42 lines (42 loc) · 997 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 997 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
36
37
38
39
40
41
42
{
"name": "binary-parser",
"version": "1.3.3",
"description": "Blazing-fast binary parser builder",
"main": "dist/binary_parser.js",
"devDependencies": {
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"@types/node": "^12.0.4",
"typescript": "^3.5.1"
},
"scripts": {
"fmt": "npx prettier --write \"{lib,example,test}/**/*.{ts,js}\"",
"check-fmt": "npx prettier --list-different \"{lib,example,test}/**/*.{ts,js}\"",
"test": "npx mocha",
"cover": "npx nyc --reporter html mocha"
},
"keywords": [
"binary",
"parser",
"decode",
"unpack",
"struct",
"buffer",
"bit"
],
"author": {
"name": "Keichi Takahashi",
"email": "keichi.t@me.com",
"url": "https://keichi.net/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/keichi/binary-parser.git"
},
"bugs": "http://github.com/keichi/binary-parser/issues",
"engines": {
"node": ">=5.10.0"
}
}