-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.14 KB
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
{
"name": "zowe-explorer-ftp-extension",
"displayName": "Zowe Explorer for IBM z/OS 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": "3.6.0-SNAPSHOT",
"icon": "resources/zowe-ftp-color.png",
"repository": {
"url": "https://github.com/zowe/zowe-explorer-vscode"
},
"categories": [
"Other"
],
"keywords": [
"mainframe",
"Zowe",
"z/OS",
"USS",
"FTP",
"zFTP"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/src/main.extension",
"contributes": {},
"extensionDependencies": [
"Zowe.vscode-extension-for-zowe"
],
"scripts": {
"build": "pnpm clean && pnpm license && webpack --mode production && pnpm madge",
"test:unit": "vitest run --coverage",
"test": "pnpm test:unit",
"lint": "concurrently -n \"_eslint_,prettier\" \"pnpm lint:all\" \"pnpm run \"/pretty.*/\"\"",
"lint:all": "pnpm run \"/^lint:[st].*/\"",
"lint:src": "eslint . --format stylish \"src/**/*.ts\"",
"lint:test": "eslint . --format stylish \"__tests__/**/*.ts\"",
"madge": "madge -c --no-color --no-spinner --exclude __mocks__ --extensions js,ts src/",
"pretty": "prettier --write .",
"pretty:check": "prettier --check .",
"watch": "webpack --mode development --watch",
"clean": "rimraf out",
"fresh-clone": "pnpm clean && (rimraf node_modules || true)",
"vscode:prepublish": "webpack --mode production",
"license": "node ../../scripts/updateLicenses.mjs",
"package": "vsce package --no-dependencies && node ../../scripts/mv-pack.js zowe-explorer-ftp-extension vsix"
},
"engines": {
"vscode": "^1.101.0"
},
"dependencies": {
"@zowe/zos-files-for-zowe-sdk": "^8.32.0",
"@zowe/zos-ftp-for-zowe-cli": "^3.0.0",
"@zowe/zos-jobs-for-zowe-sdk": "^8.32.0",
"@zowe/zowe-explorer-api": "workspace:*"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.2.6",
"vitest": "^3.2.6"
},
"madge": {
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
}
}