-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 911 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
{
"name": "js-binary-schema-parser",
"version": "2.0.3",
"description": "Parse binary files with a schema into nicely readable objects",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.4"
},
"main": "lib/index.js",
"scripts": {
"example": "babel-node ./example/index.js",
"example-debug": "babel-node --inspect-brk ./example/index.js",
"build": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "https://github.com/matt-way/jsBinarySchemaParser.git"
},
"keywords": [
"javascript",
"binary",
"file",
"parser",
"schema"
],
"author": "Matt Way",
"license": "MIT",
"bugs": {
"url": "https://github.com/matt-way/jsBinarySchemaParser/issues"
},
"homepage": "https://github.com/matt-way/jsBinarySchemaParser"
}