This repository has been archived by the owner on Dec 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "zowe-explorer-ftp-extension",
"displayName": "Zowe Explorer Extension for FTP",
"publisher": "Zowe",
"author": "Zowe",
"license": "EPL-2.0",
"description": "Adds zFTP support to Zowe Explorer demonstrating how to extend the Zowe Explorer using its extensibility API.",
"version": "1.7.0",
"icon": "zowe_logo.png",
"repository": {
"url": "https://github.com/phaumer/zowe-explorer-ftp-extension"
},
"engines": {
"vscode": "^1.45.1"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {},
"extensionDependencies": [
"Zowe.vscode-extension-for-zowe"
],
"scripts": {
"prepare": "yarn build",
"build": "tsc -p ./",
"lint": "concurrently -n \"_eslint_,prettier\" \"eslint . --ext .ts\" \"prettier --check .\"",
"pretty": "prettier --write .",
"watch": "tsc -watch -p ./",
"vscode:prepublish": "yarn build && yarn lint",
"package": "vsce package"
},
"dependencies": {
"@zowe/cli": "6.15.0",
"@zowe/zos-ftp-for-zowe-cli": "1.1.0",
"tmp": "0.2.1"
},
"devDependencies": {
"@types/node": "^10.17.24",
"@types/tmp": "0.2.0",
"@types/vscode": "^1.45.1",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"concurrently": "^5.2.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "2.0.5",
"typescript": "^3.9.7",
"vsce": "^1.77.0"
}
}