-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 892 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
{
"name": "antlr-4-ts-test",
"version": "1.0.0",
"description": "",
"main": "/build/tsc/main/typescript/index.js",
"scripts": {
"clean": "rm -rf ./build/*",
"prestart": "npm run build",
"start": "node build/tsc/main/typescript/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild2": "npm run antlr; npm run clean",
"prebuild": "npm run clean",
"build": "npm run tsc",
"tsc": "./node_modules/.bin/tsc",
"preantlr": "rm -rf src/gen/*",
"antlr": "./node_modules/.bin/antlr4ts -visitor src/main/g4/SOQL.g4 -o src/gen/typescript/soql-parser/"
},
"author": "Peter (Somogyvari) Metz <peter.somogyvari@accenture.com>",
"license": "UNLICENSED",
"dependencies": {
"antlr4ts": "0.4.1-alpha.0"
},
"devDependencies": {
"@types/node": "8.0.14",
"antlr4ts-cli": "0.4.0-alpha.4",
"typescript": "2.4.1"
}
}