forked from mcchatman8009/antlr4-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.47 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
{
"name": "antlr4-tool",
"version": "1.0.24",
"description": "An Antlr4 tool that generates both Typescript and JavaScript Antlr Parsers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"antlr4-tool": "dist/app.js",
"antlr4.js": "dist/app.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"lint": "tslint -p . -c tslint.json 'src/**/*.ts'",
"build": "rm -rf dist && mkdir -p dist/antlr-core/templates && cp -r src/bin dist && cp -r src/antlr-core/templates ./dist/antlr-core && tsc"
},
"files": [
"dist",
"LICENSE",
"docs"
],
"keywords": [
"ANTLR4",
"parser",
"antlr4",
"es5",
"typescript"
],
"license": "ISC",
"dependencies": {
"@types/antlr4": "^4.7.0",
"antlr4": "^4.7.1",
"chalk": "^2.4.1",
"chdir": "0.0.0",
"commander": "^2.16.0",
"directory-exists": "^2.0.0",
"ejs": "^2.6.1",
"find-package-json": "^1.1.0",
"lodash": "^4.17.10",
"mkdir-recursive": "^0.4.0",
"node-eval": "^2.0.0",
"targz": "^1.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/mcchatman8009/antlr4-tool"
},
"author": {
"name": "Marlon Chatman",
"email": "mcchatman8009@gmail.com"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/ejs": "^2.6.0",
"@types/lodash": "^4.14.116",
"@types/node": "^10.7.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
}
}