-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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
{
"name": "@tibco-software/cli-plugin-tcapim",
"description": "Developer CLI Plugin for TIBCO Cloud API Management",
"version": "1.0.0-beta.1",
"author": "ajjoshi-tibco",
"bugs": "https://github.com/TIBCOSoftware/tcapim-cli-plugin/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@tibco-software/cic-cli-core": "^1.0.0-beta.1",
"adm-zip": "^0.5.9",
"graphql": "^16.0.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@oclif/plugin-help": "^3.3.1",
"eslint": "^8.6.0",
"globby": "^10.0.2",
"nyc": "^15.1.0",
"mocha": "^10.0.0",
"chai": "^4.3.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/TIBCOSoftware/tcapim-cli-plugin",
"keywords": [
"oclif-plugin",
"tcapim",
"cli plugin tcapim",
"tibco cli plugin",
"tibco cli",
"graphql policies",
"api management",
"tibco tcapim"
],
"license": "BSD-3-Clause",
"oclif": {
"topics": {
"tcapim": {
"description": "Manage applications for TIBCO Cloud API Management"
}
},
"commands": "./src/commands",
"bin": "tibco",
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "https://github.com/TIBCOSoftware/tcapim-cli-plugin",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
}
}