-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.5 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
{
"name": "binarcular",
"version": "0.2.1",
"description": "Parse|write|slice|search binary data/files into|from meaningful JSON structures, inside your web browser",
"author": "Igor Zinken <[email protected]> (https://www.igorski.nl/)",
"bugs": {
"url": "https://github.com/igorski/binarcular/issues/"
},
"repository": {
"type": "git",
"url": "https://github.com/igorski/binarcular.git"
},
"license": "MIT",
"keywords": [
"binary",
"file",
"byte",
"array",
"parse",
"parser",
"parsing",
"write",
"writing",
"typed",
"struct",
"structure",
"conversion",
"header",
"client",
"browser"
],
"main": "dist/binarcular.js",
"jsnext:main": "binarcular.js",
"scripts": {
"dev": "cross-env NODE_ENV=dev webpack-dev-server --progress --mode development --config webpack.config.js",
"build": "webpack -p --progress --mode production --config webpack.config.js",
"test": "jest",
"prepublish": "npm run test && npm run build"
},
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "7.9.6",
"babel-loader": "8.1.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.4.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.4",
"worker-loader": "^3.0.3"
}
}