forked from sagneessens/vscode-xslt-transform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.26 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
{
"name": "xslt-transform",
"displayName": "xslt-transform",
"description": "An extension to perform XSLT transformations with the Saxon XSLT processor",
"publisher": "SvenAGN",
"license": "MIT",
"version": "0.0.4",
"engines": {
"vscode": "^1.37.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:xslt.transform"
],
"repository": {
"type": "git",
"url": "https://github.com/BulletTime/vscode-xslt-transform.git"
},
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "XSLT Configuration",
"properties": {
"xslt.processor": {
"type": "string",
"default": "",
"description": "Define the path to the XSLT processor"
}
}
},
"commands": [
{
"command": "xslt.transform",
"title": "Run Transformation",
"category": "XSLT"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^10.12.21",
"@types/vscode": "^1.37.0",
"glob": "7.1.6",
"mocha": "^7.1.2",
"typescript": "^3.8.3",
"tslint": "^6.1.2",
"vscode-test": "^1.3.0"
}
}