forked from zowe/zowe-explorer-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 855 Bytes
/
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
{
"name": "@zowe/zowe-explorer-api",
"version": "1.16.0",
"description": "Extensibility API for Zowe Explorer.",
"publisher": "Zowe",
"author": "Zowe",
"license": "EPL-2.0",
"repository": {
"url": "https://github.com/zowe/vscode-extension-for-zowe"
},
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "yarn clean && tsc -p ./",
"test": "echo \"zowe-explorer-api: coming soon.\"",
"lint": "concurrently -n \"_eslint_,prettier\" \"eslint . --ext .ts\" \"prettier --check .\"",
"lintErrors": "echo \"zowe-explorer-api: coming soon.\"",
"pretty": "prettier --write .",
"clean": "rimraf lib",
"license": "node ../../scripts/license.js",
"package": "yarn license && yarn lint && yarn build && npm pack && node ../../scripts/mv-pack.js zowe-zowe-explorer-api tgz"
}
}