forked from mongodb-js/compass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.84 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
{
"name": "bson-transpilers",
"version": "2.0.3",
"apiVersion": "0.0.1",
"productName": "BSON Transpilers",
"description": "Source to source compilers using ANTLR",
"contributors": [
"Anna Herlihy <[email protected]>",
"Alena Khineika <[email protected]>",
"Irina Shestak <[email protected]>"
],
"main": "index.js",
"compass:main": "index.js",
"scripts": {
"start": "node index.js",
"precompile": "node download-antlr.js",
"compile": "npm run antlr4-js && npm run antlr4-py && npm run symbol-table",
"antlr4-js": "java -Xmx500M -cp './antlr-4.7.2-complete.jar:$CLASSPATH' org.antlr.v4.Tool -Dlanguage=JavaScript -lib grammars -o lib/antlr -visitor -Xexact-output-dir grammars/ECMAScript.g4",
"antlr4-py": "java -Xmx500M -cp './antlr-4.7.2-complete.jar:$CLASSPATH' org.antlr.v4.Tool -Dlanguage=JavaScript -lib grammars -o lib/antlr -visitor -Xexact-output-dir grammars/Python3.g4",
"symbol-table": "node compile-symbol-table.js",
"pretest": "npm run compile",
"test": "mocha",
"//": "This is explicitly not `npm run test` like in other packages to avoid java compilation that fails in ci",
"test-ci": "mocha",
"depcheck": "depcheck",
"check": "npm run lint && npm run depcheck",
"lint": "eslint .",
"check-ci": "npm run check"
},
"homepage": "https://github.com/mongodb-js/compass",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/compass.git"
},
"license": "SSPL",
"devDependencies": {
"chai": "^4.3.4",
"depcheck": "^1.4.1",
"eslint": "^7.25.0",
"eslint-config-mongodb-js": "^2.1.0",
"mocha": "^8.4.0"
},
"dependencies": {
"antlr4": "4.7.2",
"bson": "^4.4.1",
"js-yaml": "^3.13.1"
},
"bugs": {
"url": "https://jira.mongodb.org/projects/COMPASS/issues",
"email": "[email protected]"
}
}