forked from keichi/binary-parser
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.35 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
{
"name": "binary-parser-encoder",
"version": "1.5.3",
"description": "Blazing-fast binary parser builder",
"main": "dist/binary_parser.js",
"types": "dist/binary_parser.d.ts",
"devDependencies": {
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"@types/node": "^14.14.0",
"typescript": "^4.0.3"
},
"scripts": {
"build": "tsc",
"fmt": "prettier --write \"{lib,example,test}/**/*.{ts,js}\"",
"check-fmt": "prettier --list-different \"{lib,example,test}/**/*.{ts,js}\"",
"test": "mocha",
"test-browser": "parcel test/browser.html --open",
"cover": "nyc --reporter html mocha",
"prepare": "npm run build"
},
"files": [
"dist/*.js",
"dist/binary_parser.d.ts"
],
"keywords": [
"binary",
"parser",
"decode",
"encoder",
"encode",
"unpack",
"struct",
"buffer",
"bit"
],
"author": {
"name": "Keichi Takahashi",
"email": "[email protected]",
"url": "https://keichi.net/"
},
"contributors": [
{
"name": "Eric Blanchard",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/Ericbla/binary-parser.git"
},
"bugs": "http://github.com/Ericbla/binary-parser/issues",
"dependencies": {
"smart-buffer": "^4.1.0"
},
"engines": {
"node": ">=8.9.0"
}
}