-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
110 lines (110 loc) · 3.23 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
{
"name": "bump-cli",
"description": "The Bump CLI is used to interact with your API documentation hosted on Bump.sh by using the API of developers.bump.sh",
"version": "2.9.2",
"author": "Paul Bonaud <[email protected]>",
"bin": {
"bump": "./bin/run.js"
},
"bugs": "https://github.com/bump-sh/cli/issues",
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4",
"@types/chai": "^5",
"@types/debug": "^4.1.12",
"@types/jsonpath": "^0.2.4",
"@types/mocha": "^10",
"@types/node": "^22",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"chai": "^5.1.2",
"eslint": "^8",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^11",
"mock-stdin": "^1.0.0",
"nock": "^14.0.0-beta.16",
"np": "^10.1.0",
"nyc": "^17.1.0",
"oclif": "^4",
"shx": "^0.3.3",
"sinon": "^19.0.2",
"ts-node": "^10",
"typescript": "^5"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"homepage": "https://bump.sh",
"keywords": [
"api",
"documentation",
"openapi",
"asyncapi",
"bump",
"cli"
],
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"oclif": {
"bin": "bump",
"dirname": "bump",
"commands": {
"strategy": "explicit",
"target": "./dist/index.js",
"identifier": "COMMANDS"
},
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"timeoutInDays": 30,
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>. Please upgrade with <%= chalk.underline.dim(`npm update ${config.name}`) %>."
}
},
"repository": "bump-sh/cli",
"scripts": {
"prepare": "npm run build",
"build": "shx rm -rf dist && tsc -b",
"clean": "rm -rf dist/ oclif.manifest.json",
"lint": "eslint . --ext .ts",
"fmt": "eslint --fix . --ext .ts",
"pack": "oclif pack tarballs",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run clean && npm run build && oclif manifest && oclif readme",
"pretest": "npm run clean && npm run build",
"release": "np --no-release-draft",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"test-coverage": "nyc npm run test",
"test-integration": "node ./test/integration.cjs",
"version": "oclif readme && git add README.md"
},
"types": "dist/index.d.ts",
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.2",
"@asyncapi/specs": "^6.8.0",
"@clack/prompts": "^0.7.0",
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"@oclif/plugin-warn-if-update-available": "^3.1.20",
"@stoplight/yaml": "^4.3.0",
"async-mutex": "^0.5.0",
"axios": "^1.7.7",
"chalk": "^5.3.0",
"debug": "^4.3.7",
"jsonpath": "^1.1.1",
"mergician": "^2.0.2",
"oas-schemas": "git+https://[email protected]/OAI/OpenAPI-Specification.git#882d1caedb0bff825a1fd10728e7e3dc43912d37",
"open": "^10.1.0"
}
}