forked from mcchatman8009/antlr4-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.13 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "antlr4-editor",
"version": "1.0.83",
"description": "An full editor front-end library that can support various editor platforms, all using Antlr4",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"antlr4-editor": "cli/app.js"
},
"scripts": {
"fix-resolutions": "npx npm-force-resolutions",
"test": "mocha",
"build-tinyc-sample": "antlr4-tool -o ./samples/tinyc/parser samples/tinyc/Tinyc.g4",
"build-scss": "webpack --config ./webpack.scss.config.js",
"start-tinyc": "electron ./samples/tinyc/index.html",
"clean": "rm -rf dist",
"lint": "tslint -p . -c tslint.json 'src/**/*.ts'",
"build": "webpack --config ./webpack.scss.config.js && tsc --sourceMap false && cp -r src/cli/templates/*.ejs ./dist/cli/templates/"
},
"files": [
"**/*",
"LICENSE",
"docs"
],
"keywords": [
"ANTLR4",
"editor",
"code-editor",
"web-editor",
"parser",
"antlr4",
"antlr4-editor",
"antlr-editor",
"helper",
"es5",
"es6",
"language",
"dsl",
"typescript"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/mcchatman8009/antlr4-editor"
},
"author": {
"name": "Marlon Chatman",
"email": "[email protected]"
},
"dependencies": {
"@types/lodash": "^4.14.149",
"antlr4-helper": "^1.0.56",
"antlr4-tool": "^1.0.30",
"chalk": "^2.4.1",
"codemirror": "^5.39.2",
"commander": "^2.17.1",
"ejs": "^2.6.1",
"expressive-template": "^1.0.0",
"lodash": "^4.17.15",
"mkdir-recursive": "^0.4.0",
"rxjs": "^6.2.2"
},
"devDependencies": {
"npm-force-resolutions": "0.0.3",
"@types/codemirror": "0.0.58",
"@types/node": "^10.5.4",
"chai": "^4.1.2",
"css-loader": "^1.0.0",
"electron": "^4.0.5",
"mini-css-extract-plugin": "^0.4.1",
"mocha": "^5.2.0",
"node-sass": "4.13.1",
"sass-loader": "^7.1.0",
"tslint": "^5.10.0",
"typedoc": "^0.17.3",
"typedoc-plugin-markdown": "^1.1.13",
"typescript": "^2.9.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"resolutions": {
"minimist": "^1.2.5"
}
}