-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1 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
{
"name": "bnf-parser",
"version": "4.1.3",
"description": "Deterministic BNF compiler/parser",
"homepage": "https://bnf-parser.ajanibilby.com",
"main": "./bin/index.js",
"type": "module",
"bin": {
"bnf-compile": "bin/cli.js"
},
"scripts": {
"test": "node ./test/index.js",
"build": "run-s build:*",
"build:ts": "tsc",
"build:syntax": "node ./tools/build-syntax.js",
"build:preload": "node ./tools/post-build.js",
"build:bnfs": "node ./bin/cli.js ./bnf/ ./dist/",
"build:bundle": "npx rollup -c"
},
"repository": {
"type": "git",
"url": "https://github.com/AjaniBilby/BNF-parser"
},
"keywords": [
"ast",
"bnf",
"compile",
"parse",
"typescript",
"webpack ready",
"precompiled",
"webassembly",
"wasm"
],
"author": "Ajani Bilby",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.10",
"npm-run-all": "^4.1.5",
"rollup": "^3.26.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"binaryen": "^113.0.0",
"chalk": "^5.3.0"
}
}