-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.64 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
{
"exclude": [
"node_modules"
],
"name": "gap-lint",
"description": "GAP-Lint is a linter tool to detect errors and problems in GAP code.",
"version": "1.0.8",
"main": "index.js",
"author": "Manuel Martins",
"license": "ISC",
"bugs": {
"url": "https://github.com/mcmartins/gap-lint/issues"
},
"homepage": "https://github.com/mcmartins/gap-lint#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mcmartins/gap-lint.git"
},
"keywords": [
"gap",
"grammar"
],
"scripts": {
"clean": "rm -rf ./dist && rm -f src/gap.tokens src/gapLexer.js src/gapParser.js src/gapLexer.tokens src/gap.interp src/gapLexer.interp src/antlr.jar",
"build": "npm run setup:antlr && npm run gen:grammar && webpack --env.production",
"setup:antlr": "[ ! -f src/antlr.jar ] && wget http://www.antlr.org/download/antlr-4.7.2-complete.jar -O src/antlr.jar || exit 0",
"gen:grammar": "cd src/ && java -cp antlr.jar:$CLASSPATH org.antlr.v4.Tool -Dlanguage=JavaScript -no-listener gap.g4"
},
"devDependencies": {
"antlr4": "4.7.2",
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-decorators": "7.4.4",
"@babel/plugin-transform-classes": "7.4.4",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "7.4.5",
"@jupyterlab/rendermime": "0.19.1",
"babel-eslint": "10.0.2",
"babel-loader": "8.0.6",
"css-loader": "3.0.0",
"save-svg-as-png": "1.4.14",
"seedrandom": "3.0.1",
"style-loader": "0.23.1",
"uglifyjs-webpack-plugin": "2.1.3",
"webpack": "4.35.0",
"webpack-cli": "3.3.5"
}
}