-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 2.28 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
{
"name": "matlab-language-server",
"version": "1.3.0",
"description": "Language Server for MATLAB code",
"main": "./src/index.ts",
"bin": "./out/index.js",
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack --mode development && node ./build/makeLicensingOut.js && cd src/licensing/gui && npm run build && cd ../../.. && node ./build/copyLicensingToOut.js",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "npm run test-compile",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --ext ts --fix",
"postinstall": "cd src/licensing/gui && npm install && cd ../../..",
"test": "mocha"
},
"repository": {
"url": "https://github.com/mathworks/MATLAB-language-server"
},
"author": "The MathWorks, Inc.",
"license": "MIT",
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/mocha": "^10.0.6",
"@types/node": "^18.7.18",
"@types/node-fetch": "^2.6.11",
"@types/sinon": "^17.0.3",
"@types/which": "^2.0.1",
"@types/xml2js": "^0.4.14",
"@types/yargs": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"mocha": "^10.4.0",
"node-loader": "^2.0.0",
"sinon": "^18.0.0",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.2",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"chokidar": "^3.5.3",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-session": "^1.18.0",
"faye": "^1.4.0",
"hpagent": "^1.2.0",
"node-fetch": "^3.3.2",
"vscode-languageserver": "^8.0.2",
"vscode-languageserver-textdocument": "^1.0.7",
"@vscode/debugadapter": "^1.56.0",
"vscode-uri": "^3.0.6",
"which": "^2.0.2",
"xml2js": "^0.6.2",
"yargs": "^17.5.1"
},
"mocha": {
"require": "ts-node/register",
"spec": "tests/**/*.test.ts"
}
}