-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.81 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.81 KB
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
{
"name": "ov-language-server",
"version": "0.1.7",
"description": "language-server implementation for openVALIDATION",
"repository": {
"type": "git",
"url": "https://github.com/openvalidation/openvalidation-languageserver.git"
},
"keywords": [
"openVALIDATION",
"LSP",
"language-server"
],
"author": {
"name": "openVALIDATION",
"email": "validaria@openvalidation.io",
"url": "https://openvalidation.io/"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"prepare": "npm run clean && npm run build",
"start": "npm run build && node ./dist/start-server.js",
"start:watch": "nodemon",
"test": "jest && make-coverage-badge",
"test:watch": "jest --watch"
},
"dependencies": {
"axios": "^0.19.2",
"class-transformer": "^0.3.1",
"js-yaml": "^3.13.1",
"lodash": "^4.17.13",
"openvalidation-languageserver-backend": "^0.0.2",
"ov-language-server-types": "^0.1.2",
"reflect-metadata": "^0.1.13",
"typescript": "^3.8.3",
"typescript-string-operations": "^1.3.2",
"vscode-languageserver": "^5.2.1",
"vscode-uri": "^2.1.1",
"vscode-ws-jsonrpc": "^0.2.0",
"ws": "^7.2.3"
},
"devDependencies": {
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
"@types/js-yaml": "^3.12.3",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.31",
"@types/ws": "^7.2.3",
"axios-mock-adapter": "^1.18.1",
"express": "^4.15.2",
"jest": "^25.2.1",
"make-coverage-badge": "^1.2.0",
"nodemon": "^2.0.2",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.1",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"vscode-languageserver-types": "^3.15.1"
},
"readmeFilename": "README.md"
}