-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.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
{
"name": "structurizr-language-server",
"description": "Language Server component for the Structurizr DSL.",
"version": "0.1.0",
"publisher": "ciarant",
"license": "MIT",
"repository": {
"url": "https://github.com/ciarant/structurizr-language-server"
},
"engines": {
"node": "*"
},
"main": "out/index.js",
"files": [
"*.md",
"out",
"src"
],
"dependencies": {
"@types/node": "^18.11.3",
"antlr4-c3": "^2.2.1",
"antlr4ts": "^0.5.0-alpha.4"
},
"scripts": {
"antlr4ts": "antlr4ts -visitor src/parser/*.g4",
"build": "npm run antlr4ts && tsc -b",
"compile": "tsc -b",
"watch": "tsc -w",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@typescript-eslint/parser": "^5.40.1",
"antlr4ts-cli": "^0.5.0-alpha.4",
"chai": "^4.3.6",
"eslint": "^8.25.0",
"merge-options": "^3.0.4",
"mocha": "^10.1.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}