-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
{
"name": "vscode-langserver-shacl",
"publisher": "stardog-union",
"license": "Apache-2.0",
"displayName": "SHACL Language Server",
"description": "Language intelligence (diagnostics, hover tooltips, etc.) for SHACL",
"version": "0.2.0",
"contributors": [
{
"name": "Jason Rogers",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/stardog-union/stardog-vsc.git"
},
"bugs": {
"url": "https://github.com/stardog-union/stardog-vsc/issues"
},
"homepage": "https://github.com/stardog-union/stardog-vsc/vscode-langserver-shacl/#readme",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Programming Languages",
"Linters",
"Other"
],
"activationEvents": [
"onLanguage:shacl"
],
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "yarn run compile && node ./out/test/runTest.js"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"chai": "^4.2.0",
"mocha": "^9.0.1",
"tslint": "^5.8.0",
"typescript": "^4.3.2",
"vscode": "^1.1.37",
"vscode-test": "^1.5.2"
},
"dependencies": {
"shacl-language-server": "^1.5.0",
"vscode-languageclient": "^5.2.1"
},
"extensionDependencies": [
"stardog-union.stardog-rdf-grammars"
]
}