-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 870 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
{
"name": "asmproc",
"version": "0.4.1",
"description": "",
"main": "asmproc.js",
"bin": {
"asmproc": "./asmproc.js"
},
"scripts": {
"build": "tsc",
"test": "node asmproc -i test/repeat.lm -o test/repeat.out -t dasm",
"ncc": "nearleyc const.ne -o const.js",
"nce": "nearleyc expressions.ne -o expressions.js",
"ncg": "nearleyc grammar.ne -o grammar.js",
"nt": "nearley-test -i 3*4+1 expressions.js",
"pg": "pegjs"
},
"author": "Antonino Porcino <[email protected]>",
"license": "MIT",
"dependencies": {
"command-line-args": "^5.0.2",
"moo": "^0.5.0",
"nearley": "^2.16.0",
"pegjs": "^0.10.0"
},
"devDependencies": {
"@types/node": "^13.13.5",
"@types/command-line-args": "^5.0.0",
"@types/nearley": "^2.11.0",
"@types/pegjs": "^0.10.1",
"pegjs-backtrace": "^0.1.2"
}
}