-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
75 lines (75 loc) · 1.74 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
{
"name": "@fabric8-analytics/fabric8-analytics-lsp-server",
"description": "LSP Server for Red Hat Dependency Analytics",
"version": "0.9.4-ea.26",
"author": "Red Hat",
"contributors": [
{
"name": "Ilona Shishov",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"keywords": [
"fabric8-analytics",
"LSP"
],
"repository": "github:fabric8-analytics/fabric8-analytics-lsp-server",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "dist/server.js",
"bin": "dist/server.js",
"files": [
"dist"
],
"dependencies": {
"@RHEcosystemAppEng/exhort-javascript-api": "^0.1.1-ea.50",
"@xml-tools/ast": "^5.0.5",
"@xml-tools/parser": "^1.0.11",
"json-to-ast": "^2.1.0",
"vscode-languageserver": "^8.1.0",
"vscode-languageserver-textdocument": "1.0.8"
},
"devDependencies": {
"@types/chai": "^4.3.7",
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.4",
"@types/uuid": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"chai": "^4.3.10",
"eslint": "^8.51.0",
"fake-exec": "^1.1.0",
"mocha": "^10.4.0",
"nyc": "^17.0.0",
"sinon": "^17.0.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
},
"scripts": {
"build": "tsc -p .",
"test": "nyc mocha --config=./test/mocha.config.json",
"prepare": "npm run build",
"lint": "eslint -c .eslintrc.js --ext .ts src/"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html",
"json"
],
"sourceMap": true,
"instrument": true
}
}