forked from jamesots/maz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.67 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
{
"name": "maz",
"version": "0.4.6",
"description": "Macro Assembler for Z80",
"main": "lib/maz.js",
"bin": {
"maz": "lib/maz.js"
},
"repository": "jamesots/maz",
"types": "lib/maz.d.ts",
"scripts": {
"build-parser": "pegjs --optimize speed -o lib/parser.js src/parser.pegjs",
"build-expr": "pegjs --optimize speed -o lib/expr.js src/expr.pegjs",
"trace-parser": "pegjs --optimize speed --trace -o lib/parser.js src/parser.pegjs",
"trace-expr": "pegjs --optimize speed --trace -o lib/expr.js src/expr.pegjs",
"build-tsc": "tsc",
"prepublish": "npm run build-tsc && npm run build-parser && npm run build-expr",
"test": "jasmine",
"start": "node lib/maz.js",
"test-z80": "node lib/maz.js -s examples/z80monitor.z80 -o /tmp/z80monitor.bin -l /tmp/z80monitor.lst",
"test-broke2": "node lib/maz.js -u -s examples/broke2.z80 -o /tmp/broke2.bin -l /tmp/broke2.lst",
"test-all": "node lib/maz.js -u -s examples/all.z80 -o /tmp/all.bin -l /tmp/all.lst",
"test-search": "node lib/maz.js -u -s examples/search.z80 -o /tmp/search.bin -l /tmp/search.lst -p examples/another_dir -p examples/search_dir_2"
},
"author": "James Ots <code@jamesots.com>",
"license": "MIT",
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/command-line-args": "^4.0.1",
"@types/jasmine": "2.5.54",
"@types/node": "^8.0.28",
"jasmine": "2.8.0",
"jasmine-ts": "0.2.1",
"pegjs": "^0.10.0",
"pegjs-backtrace": "^0.1.1",
"ts-node": "^3.3.0",
"typescript": "2.5.2"
},
"dependencies": {
"chalk": "^2.1.0",
"command-line-args": "^4.0.7",
"command-line-usage": "^4.0.1",
"source-map-support": "^0.4.17"
}
}