forked from mike-lischke/antlr4-c3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
46
47
48
{
"name": "antlr4-c3",
"version": "3.0.1",
"description": "A code completion core implementation for ANTLR4 based parsers",
"author": "Mike Lischke",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mike-lischke/antlr4-c3"
},
"keywords": [
"ANTLR4",
"code completion",
"auto completion",
"grammar",
"parser"
],
"type": "commonjs",
"main": "./lib/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run generate && npm run test",
"test": "jest --testMatch [ \"**/tests/**/*.spec.ts\" ] --no-coverage --watchAll=false --max-worker=1",
"test-ci": "jest --testMatch [ \"**/tests/**/*.spec.ts\" ] --no-coverage --watchAll=false --silent",
"test-coverage": "jest --testMatch [ \"**/tests/**/*.spec.ts\" ] --coverage --silent",
"generate": "antlr4ts tests/CPP14.g4 tests/Expr.g4 tests/Whitebox.g4 -no-listener -no-visitor -o tests/generated -Xexact-output-dir",
"eslint": "eslint ."
},
"dependencies": {
"antlr4ts": "0.5.0-alpha.4"
},
"devDependencies": {
"@types/jest": "29.5.0",
"@types/node": "18.15.0",
"@types/unicode-properties": "1.3.0",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"antlr4ts-cli": "0.5.0-alpha.4",
"eslint": "8.36.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "40.0.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"jest": "29.5.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "5.0.2"
}
}