-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
96 lines (96 loc) · 2.36 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
{
"name": "swaggerhub-cli",
"description": "SwaggerHub CLI",
"version": "0.9.0",
"author": "SmartBear",
"bin": {
"swaggerhub": "./bin/run"
},
"bugs": "https://github.com/SmartBear/swaggerhub-cli/issues",
"dependencies": {
"@oclif/core": "^3.26.3",
"@oclif/plugin-help": "^6.0.21",
"@oclif/plugin-plugins": "^5.0.9",
"deep-extend": "^0.6.0",
"fs-extra": "^11.1.1",
"inquirer": "^8.2.5",
"js-yaml": "^4.1.0",
"json-templates": "^5.0.0",
"node-fetch": "^2.6.12",
"semver": "^7.6.0"
},
"devDependencies": {
"@oclif/test": "^3.2.10",
"chai": "^4.3.10",
"sinon": "^18.0.0",
"eslint": "^9.0.0",
"eslint-plugin-chai-friendly": "^1.0.0",
"eslint-plugin-immutable": "^1.0.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"globby": "^14.0.0",
"husky": "^9.0.1",
"mocha": "^10.2.0",
"nock": "^13.3.2",
"nyc": "^17.0.0",
"rewire": "^7.0.0",
"tmp": "^0.2.1"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/SmartBear/swaggerhub-cli",
"keywords": [
"oclif"
],
"license": "Apache-2.0",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"hooks": {
"init": "./src/hooks/setup-config"
},
"bin": "swaggerhub",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"configDefaults": {
"SWAGGERHUB_URL": "https://api.swaggerhub.com"
},
"topics": {
"api": {
"description": "this topic supports the management of APIs"
},
"domain": {
"description": "this topic supports the management of Domains"
},
"integration": {
"description": "this topic supports the management of Integrations"
},
"projects": {
"description": "this topic supports the management of Projects"
}
},
"helpClass": "./src/help"
},
"repository": "SmartBear/swaggerhub-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "npx oclif manifest",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"lint": "eslint ./src ./test",
"postinstall": "node ./src/check-node-version"
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm run test"
}
}
}