-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
65 lines (65 loc) · 2.16 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
{
"name": "@zowe/cics-for-zowe-cli",
"version": "4.0.9",
"author": "Zowe",
"license": "EPL-2.0",
"description": "IBM CICS Plug-in for Zowe CLI",
"homepage": "https://github.com/zowe/cics-for-zowe-client/blob/zowe-v1-lts/packages/cli/README.md",
"bugs": {
"url": "https://github.com/zowe/cics-for-zowe-client/issues"
},
"keywords": [
"zowe",
"cli",
"cics",
"plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/zowe/cics-for-zowe-client.git"
},
"main": "lib/index.js",
"files": [
"lib"
],
"publishConfig": {
"registry": "https://zowe.jfrog.io/zowe/api/npm/npm-local-release/"
},
"scripts": {
"build": "tsc --pretty && npm run checkTestsCompile && npm run madge",
"checkTestsCompile": "echo \"Checking that test source compiles...\" && tsc --project __tests__/test-tsconfig.json --noEmit ",
"madge": "madge -c lib",
"prebuild": "npm run clean && echo Using TypeScript && tsc --version",
"clean": "rimraf lib",
"watch": "tsc --pretty --watch",
"prepublishOnly": "npm run build",
"lint": "eslint \"src/**/*.ts\" \"**/__tests__/**/*.ts\"",
"lint:src": "eslint \"src/**/*.ts\" --ignore-pattern \"**/__tests__/**/*.ts\"",
"lint:tests": "eslint \"**/__tests__/**/*.ts\"",
"prepack": "node ../../scripts/bundleTgz.js",
"postpack": "node ../../scripts/bundleTgz.js post",
"package": "npm pack --pack-destination=../../dist",
"test": "npm run test:unit && npm run test:system",
"test:system": "jest --config system.jest_config.ts",
"test:unit": "jest --config unit.jest_config.ts",
"installPlugin": "npm install && npm run clean && npm run build && zowe plugins install .",
"preshrinkwrap": "node ../../scripts/rewriteShrinkwrap.js",
"typedoc": "typedoc --out ./docs/typedoc/ ./src/ --disableOutputCheck"
},
"imperative": {
"configurationModule": "lib/imperative.js"
},
"bundledDependencies": [
"@zowe/cics-for-zowe-sdk"
],
"dependencies": {
"@zowe/cics-for-zowe-sdk": "4.0.9"
},
"devDependencies": {
"@zowe/cli": "~6.40.18"
},
"peerDependencies": {
"@zowe/cli": "~6.40.18",
"@zowe/imperative": "~4.18.17"
}
}