forked from MODLanguage/js-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 755 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 755 Bytes
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
{
"name": "MODL-js",
"version": "0.0.1",
"dependencies": {
"@types/node": "^10.12.2",
"antlr4": "^4.7.1",
"antlr4-webpack-loader": "^0.1.1",
"antlr4-webpack-plugin": "0.0.1",
"tsc": "^1.20150623.0",
"typescript-map": "0.0.6",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.6",
"webpack": "^4.25.0",
"webpack-cli": "^3.1.2"
},
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"testWithCoverage": "nyc -r lcov -e .ts -x \"*.test.ts\" mocha -r ts-node/register tests/**/*.test.ts && nyc report"
}
}