This repository has been archived by the owner on May 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
107 lines (107 loc) · 3.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
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
{
"name": "vscode-wsdl2rest",
"displayName": "Deprecated - wsdl2rest by Red Hat",
"description": "Deprecated - A VS Code extension supporting wsdl2rest via Camel Rest DSL",
"license": "Apache-2.0",
"version": "0.0.16",
"publisher": "redhat",
"icon": "icons/icon128.png",
"preview": true,
"repository": {
"type": "git",
"url": "https://github.com/camel-tooling/vscode-wsdl2rest"
},
"bugs": {
"url": "https://github.com/camel-tooling/vscode-wsdl2rest/issues"
},
"author": {
"name": "Brian Fitzpatrick",
"email": "[email protected]",
"url": "https://redhat.com"
},
"maintainers": [
{
"name": "Brian Fitzpatrick",
"email": "[email protected]",
"url": "https://redhat.com"
}
],
"homepage": "https://github.com/camel-tooling/vscode-wsdl2rest",
"keywords": [
"Camel",
"wsdl2rest",
"SOAP",
"Tool"
],
"engines": {
"vscode": "^1.57.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.wsdl2rest.local",
"onCommand:extension.wsdl2rest.url"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.wsdl2rest.local",
"title": "wsdl2rest: Create Camel Rest DSL configuration from local WSDL file"
},
{
"command": "extension.wsdl2rest.url",
"title": "wsdl2rest: Create Camel Rest DSL configuration from WSDL file URL"
}
]
},
"scripts": {
"vscode:prepublish": "npm run clean && npm run fatjar && npm install && npm run compile",
"fatjar": "mvn install -f ./wsdl2rest/pom.xml",
"clean": "rm -rf out || rmdir out /s /q",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./scripts/postinstall.js",
"test": "node ./out/test/runTest.js",
"lint": "tslint --project .",
"ui-test": "node out/ui-test/uitest_runner.js"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.18",
"@types/sinon": "^10.0.6",
"@types/sinon-chai": "^3.2.8",
"@types/vscode": "^1.57.0",
"assert": "^2.0.0",
"chai": "^4.3.4",
"gulp": "^4.0.2",
"gulp-tslint": "^8.1.4",
"mocha": "9.1.3",
"mocha-jenkins-reporter": "^0.4.7",
"mvn-artifact-download": "^6.0.0",
"request": "^2.88.2",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0",
"tslint": "^6.1.3",
"typescript": "^4.5.3",
"vscode-extension-tester": "^4.2.3",
"vscode-extension-tester-native": "^3.0.2",
"vscode-test": "^1.6.1",
"vscode-uitests-tooling": "^2.2.0"
},
"dependencies": {
"child_process": "^1.0.2",
"expand-home-dir": "^0.0.3",
"file-url": "^3.0.0",
"find-java-home": "^1.2.2",
"fs": "^0.0.1-security",
"fs-extra": "^10.0.0",
"path": "^0.12.7",
"path-exists": "^4.0.0",
"soap": "^0.43.0",
"util": "^0.12.4"
}
}