forked from fabric8-analytics/fabric8-analytics-lsp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.75 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "fabric8-analytics-lsp-server",
"description": "LSP Server for Dependency Analytics",
"version": "0.0.0-development",
"author": "Pavel Odvody",
"contributors": [
{
"name": "Michal Srb",
"email": "[email protected]"
},
{
"name": "Jyasveer Gotta",
"email": "[email protected]"
},
{
"name": "Jaivardhan Kumar",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"keywords": [
"fabric8-analytics",
"LSP"
],
"repository": {
"type": "git",
"url": "https://github.com/fabric8-analytics/fabric8-analytics-lsp-server.git"
},
"main": "dist/server.js",
"bin": "dist/server.js",
"files": [
"dist"
],
"dependencies": {
"@xml-tools/ast": "^5.0.3",
"@xml-tools/parser": "1.0.9",
"compare-versions": "3.6.0",
"json-to-ast": "^2.1.0",
"lru-cache": "^6.0.0",
"node-fetch": "^2.6.0",
"vscode-languageserver": "^5.3.0-next.9"
},
"devDependencies": {
"@semantic-release/exec": "^5.0.0",
"@types/chai": "^4.1.7",
"@types/lru-cache": "^5.1.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.5",
"@types/node-fetch": "^2.5.7",
"@types/uuid": "^8.3.0",
"chai": "^4.2.0",
"fake-exec": "^1.1.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"pkg": "^4.4.9",
"semantic-release": "^17.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.6.3"
},
"scripts": {
"build": "tsc -p .",
"test": "nyc mocha",
"prepare": "npm run build"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html",
"json"
],
"sourceMap": true,
"instrument": true
}
}