-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
127 lines (127 loc) · 3.37 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
121
122
123
124
125
126
127
{
"name": "@tibco-tcstk/cloud-cli",
"version": "3.4.0",
"scripts": {
"postinstall": "node message.js",
"testO": "node ./test/run-test-cases.js",
"cleanTest": "rm -rf ./test/tmpTest",
"test": "jasmine --config=test/support/jasmine.json",
"testB": "jasmine --config=test/support/jasmine.json --filter='Basic Operations'",
"build": "tsc && webpack --config webpack.config.js",
"packW": "webpack --config webpack.config.js",
"nm": "nodemon -e js --exec 'npm run packW'",
"watch": "tsc -w --noEmitOnError",
"compile": "pkg --output executable/tcli .",
"generateTaskDocs": "node generateHelpFiles.js",
"pub": "npm publish",
"play": "tsc-watch -p tsconfig.json --onSuccess \"npm run packW\"",
"__debug": "--inspect-brk"
},
"dependencies": {
"@tibco/discover-client-lib": "^0.35.0",
"@types/luxon": "^1.27.1",
"arg": "^4.1.3",
"axios": "^0.21.4",
"child_process": "^1.0.2",
"chokidar": "^3.5.2",
"cli-table": "^0.3.11",
"colors": "^1.4.0",
"deasync": "^0.1.26",
"del": "^5.0.0",
"echomd": "^0.2.3",
"esm": "^3.2.25",
"form-data": "^3.0.0",
"fs-extra": "^8.1.0",
"fuzzy": "^0.1.3",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt": "^1.4.0",
"jsonfile": "^5.0.0",
"lodash": "^4.17.20",
"luxon": "^1.28.0",
"properties-reader": "^0.3.1",
"replace-in-file": "^6.3.2",
"soap": "^0.38.0",
"string-similarity": "^4.0.4",
"tcp-port-used": "^1.0.2",
"websocket": "^1.0.34",
"ws": "^7.5.7",
"yargs": "^13.3.2"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/node": "^14.18.18",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jasmine": "^3.99.0",
"jasmine-reporters": "^2.5.0",
"nodemon": "^2.0.16",
"ts-node": "^9.1.1",
"tsc-watch": "2.4.0",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"bin_notes": {
"tcli_prod": "dist/tcli/main.js",
"tcli_dev": "ts-out/bin/cloud-cli.js",
"tcli_ts": "src/bin/cloud-cli.ts"
},
"bin": {
"tcli": "dist/tcli/main.js"
},
"pkg": {
"assets": [
"node_modules/**/*",
"dist/**/*",
"templates/**/*",
"docs/**/*"
],
"targets": [
"node12-macos-x64",
"node12-win-x64"
]
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "TIBCO Labs",
"email": "[email protected]",
"url": "http://www.tibco.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TIBCOSoftware/TCSTK-Cloud-CLI"
},
"homepage": "https://tibcosoftware.github.io/TCSToolkit/",
"keywords": [
"tibco",
"cloud",
"tci",
"liveapps",
"angular",
"cli",
"tcli",
"cloud starter",
"starter",
"accelerator",
"live apps",
"connected",
"intelligence",
"connected intelligence cloud",
"cic",
"labs",
"tibco labs",
"analytics",
"framework",
"forms",
"custom forms"
],
"license": "BSD-3-Clause",
"description": "Commandline interface part of the TIBCO Cloud Composer to manage TIBCO Cloud Organizations and to manage and develop your own TIBCO Cloud Application"
}