-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 3.04 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "xpath-notebook",
"displayName": "XPath Notebook for Visual Studio Code",
"description": "Notebook for XPath 3.1 - for analysing XML or JSON",
"version": "0.1.0",
"publisher": "deltaxml",
"icon": "xpath-notebook.png",
"bugs": {
"url": "https://github.com/DeltaXML/vscode-xpath-notebook/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/DeltaXML/vscode-xpath-notebook.git"
},
"keywords": [
"xml",
"json",
"xpath",
"notebook"
],
"engines": {
"vscode": "^1.70.2"
},
"categories": [
"Programming Languages",
"Notebooks",
"Data Science"
],
"activationEvents": [
"onNotebook:xbook",
"workspaceContains:**/*.xbook",
"workspaceContains:**\/*.ipynb",
"onCommand:xpath-notebook.newNotebook",
"onLanguage:xml",
"onLanguage:xsl"
],
"license": "MIT",
"main": "./out/extension.js",
"configurationDefaults": {
"[xpath]": {
"editor.semanticHighlighting.enabled": true
},
"[json]": {
"editor.semanticHighlighting.enabled": true
},
"[javascript]": {
"editor.semanticHighlighting.enabled": true
}
},
"contributes": {
"menus": {
"explorer/context": [
{
"command": "xpath-notebook.newNotebook",
"when": "resourceLangId == xslt"
}
]
},
"notebooks": [
{
"id": "xbook",
"type": "xbook",
"displayName": "XBook",
"selector": [
{
"filenamePattern": "*.xbook"
}
]
}
],
"commands": [
{
"command": "xpath-notebook.newNotebook",
"title": "New XPath Notebook"
}
]
},
"grammars": [
{
"language": "xbook",
"scopeName": "source.xbook",
"path": "./syntaxes/JSON.tmLanguage.json"
}
],
"scripts": {
"vscode:prepublish": "npm run compile && npm run compile-xsl",
"compile": "tsc -p ./",
"compile-xsl": "npx xslt3 -t -xsl:resources/xslt/xpath-eval-to-json.xsl -export:resources/xslt-sef/xpath-eval-to-json.sef.json -nogo",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./",
"test": "jest"
},
"extensionDependencies": [
"deltaxml.xslt-xpath"
],
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^10.17.17",
"@types/vscode": "^1.66.0",
"@types/vscode-notebook-renderer": "^1.60.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"tslint": "^5.20.1",
"typescript": "^4.3.2",
"xslt3": "^2.3.0"
},
"dependencies": {
"rimraf": "^3.0.2",
"jsonc-parser": "^3.0.0",
"saxon-js": "^2.3.0"
}
}