-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
120 lines (120 loc) · 3.48 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
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@ibmgaragecloud/cloud-native-toolkit-cli",
"version": "1.50.2",
"description": "CLI that provides functions to simplify interactions with containerized platforms and tools",
"main": "dist/index.js",
"author": "Sean Sundberg <[email protected]>",
"license": "MIT",
"private": false,
"bin": {
"igc": "dist/script.js",
"kubectl-igc": "dist/script.js",
"kubectl-console": "dist/script-console.js",
"kubectl-credentials": "dist/script-credentials.js",
"kubectl-dashboard": "dist/script-dashboard.js",
"kubectl-enable": "dist/script-enable.js",
"kubectl-endpoints": "dist/script-endpoints.js",
"kubectl-git": "dist/script-git.js",
"kubectl-gitops": "dist/script-gitops.js",
"kubectl-git-secret": "dist/script-git-secret.js",
"kubectl-pipeline": "dist/script-pipeline.js",
"kubectl-sync": "dist/script-namespace.js",
"kubectl-tool-config": "dist/script-tool-config.js"
},
"pkg": {
"scripts": "dist/script.js",
"assets": "dist/**/*",
"targets": [
"node16-linux-x64",
"node16-macos-x64",
"node16-alpine-x64",
"node16-linux-arm64",
"node16-macos-arm64",
"node16-alpine-arm64"
]
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"scripts": {
"clean": "rimraf dist/",
"test": "jest --coverage",
"tdd": "jest --watch",
"build": "tsc -d",
"postbuild": "cp -R etc dist/ && chmod +x dist/script*.js",
"prelink": "npm run build",
"link": "npm link $npm_package_name",
"unlink": "npm unlink $npm_package_name",
"prepare": "npm run build",
"prestart": "npm run build",
"start": "./igc",
"igc": "./igc",
"release": "release-it --verbose"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/dockerode": "^3.3.0",
"@types/follow-redirects": "^1.14.0",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.1.3",
"@types/jest": "^27.0.3",
"@types/js-yaml": "^4.0.5",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "^4.14.177",
"@types/node": "^16.11.10",
"@types/open": "^6.2.1",
"@types/ora": "^3.2.0",
"@types/puppeteer": "^5.4.4",
"@types/puppeteer-core": "^5.4.0",
"@types/rimraf": "^3.0.2",
"@types/superagent": "^4.1.13",
"@types/tar": "^6.1.1",
"@types/yargs": "^17.0.7",
"babel-jest": "^27.3.1",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-plugin-context": "^2.9.0",
"jest-sonar-reporter": "^2.0.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@cloudnativetoolkit/git-client": "^1.14.7",
"@cloudnativetoolkit/kubernetes-client": "^9.1.3",
"chalk": "^4.1.2",
"dot-properties": "^1.0.1",
"follow-redirects": "^1.14.9",
"fs-extra": "^10.0.1",
"inquirer": "^8.2.2",
"js-yaml": "^4.1.0",
"jsonpath": "^1.1.1",
"lodash": "^4.17.21",
"node-stream-zip": "^1.15.0",
"open": "^8.4.0",
"openshift-rest-client": "^7.0.0",
"ora": "^5.4.1",
"p-throttle": "^4.1.1",
"rimraf": "^3.0.2",
"rxjs": "^7.5.5",
"superagent": "^6.1.0",
"tar": "^6.1.11",
"tslib": "^2.3.1",
"typescript-ioc": "^3.2.2",
"yargs": "^17.4.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ibm-garage-cloud/ibm-garage-cloud-cli.git"
},
"publishConfig": {
"access": "public"
}
}