forked from mike-lischke/antlr4-c3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 944 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
34
35
36
37
38
{
"name": "antlr4-c3",
"version": "1.1.13",
"description": "A code completion core implmentation for ANTLR4 based parsers",
"main": "out/index.js",
"typings": "out/index.d.ts",
"scripts": {
"prepublishOnly": "npm run test",
"test": "tsc --version && tsc && mocha out/test",
"generate": "antlr4ts test/CPP14.g4 test/Expr.g4 -no-listener -no-visitor"
},
"repository": {
"type": "git",
"url": "https://github.com/mike-lischke/antlr4-c3"
},
"keywords": [
"ANTLR4",
"code completion",
"auto completion",
"grammar",
"parser"
],
"dependencies": {
"antlr4ts": "^0.5.0-alpha.3"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^10.14.4",
"antlr4ts-cli": "^0.5.0-alpha.3",
"chai": ">=4.2.0",
"mocha": "^6.1.4",
"path": ">=0.12.7",
"typescript": "^3.4.4"
},
"author": "Mike Lischke",
"license": "MIT"
}