forked from tunnelvisionlabs/antlr4ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 3.06 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
59
60
61
62
63
64
{
"name": "antlr4ts-root",
"version": "0.4.0-dev",
"description": "Root project for ANTLR 4 runtime for Typescript",
"private": true,
"main": "index.js",
"scripts": {
"prepublish": "npm run buildtool && npm link antlr4ts-cli && npm run antlr4ts && npm run tsc && npm link target/src && npm run buildrts",
"unlink": "npm unlink antlr4ts && npm unlink target/src && npm unlink antlr4ts-cli && npm run unlinkruntime && npm run unlinktool",
"unlinkruntime": "cd target/src && npm unlink",
"buildtool": "cd tool && npm link",
"unlinktool": "cd tool && npm unlink",
"clean": "npm run unlink && git clean -idx",
"antlr4ts": "npm run antlr4ts-test-xpath && npm run antlr4ts-test-rewriter && npm run antlr4ts-benchmark",
"antlr4ts-test-xpath": "cd src/tree/xpath && antlr4ts XPathLexer.g4 -DbaseImportPath=../..",
"antlr4ts-test-rewriter": "cd test/tool && antlr4ts RewriterLexer1.g4 RewriterLexer2.g4 RewriterLexer3.g4 -DbaseImportPath=../../../../src -o gen/rewriter",
"antlr4ts-benchmark": "npm run antlr4ts-benchmark-std && npm run antlr4ts-benchmark-std-atn && npm run antlr4ts-benchmark-lr && npm run antlr4ts-benchmark-lr-atn",
"antlr4ts-benchmark-std": "cd benchmark && antlr4ts -visitor Java.g4 -DbaseImportPath=../../../src -o gen/std",
"antlr4ts-benchmark-std-atn": "cd benchmark && antlr4ts -visitor -Xforce-atn Java.g4 -DbaseImportPath=../../../src -o gen/std-atn",
"antlr4ts-benchmark-lr": "cd benchmark && antlr4ts -visitor JavaLR.g4 -DbaseImportPath=../../../src -o gen/lr",
"antlr4ts-benchmark-lr-atn": "cd benchmark && antlr4ts -visitor -Xforce-atn JavaLR.g4 -DbaseImportPath=../../../src -o gen/lr-atn",
"tsc": "tsc",
"buildrts": "cd test/runtime && tsc",
"test": "mocha",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"postcover": "istanbul report",
"dev-test-watch": "mocha-typescript-watch",
"typedoc": "typedoc --ignoreCompilerErrors --out doc src --name antlr4ts",
"pack-runtime": "npm pack target/src",
"publish-runtime": "npm install && npm publish target/src",
"prebenchmark": "npm run antlr4ts-benchmark && tsc",
"benchmark": "npm run benchmark-core",
"benchmark-core": "node target/benchmark/TestPerformance.js",
"preprofile": "npm run antlr4ts-benchmark && tsc",
"profile": "npm run profile-core",
"profile-core": "node --prof target/benchmark/TestPerformance.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tunnelvisionlabs/antlr4ts.git"
},
"keywords": [
"ANTLR4",
"typescript"
],
"author": "Terence Parr, Sam Harwell, and Burt Harris",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/tunnelvisionlabs/antlr4ts/issues"
},
"homepage": "https://github.com/tunnelvisionlabs/antlr4ts#readme",
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.41",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"mocha-typescript": "^1.0.10",
"source-map-support": "^0.4.3",
"std-mocks": "^1.0.1",
"typedoc": "^0.5.1",
"typescript": "^2.4.1"
},
"dependencies": {}
}