-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
76 lines (76 loc) · 2.2 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
{
"name": "bump-github-action",
"version": "1.1.11",
"type": "module",
"description": "GitHub action to deploy your API documentation on Bump.sh",
"bugs": "https://github.com/bump-sh/github-action/issues",
"homepage": "https://bump.sh",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc -b",
"clean": "rm -rf dist/",
"format": "eslint . --ext .ts --config .eslintrc --fix",
"format-check": "eslint . --ext .ts --config .eslintrc",
"local-action": "npx local-action . src/main.ts .env",
"package": "npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
"all": "npm run build && npm run format && npm run package && npm test"
},
"repository": "bump-sh/github-action",
"keywords": [
"api",
"documentation",
"api-documentation",
"openapi",
"openapi-specification",
"asyncapi",
"asyncapi-specification",
"bump",
"github-action"
],
"author": "Bump.sh",
"license": "MIT",
"files": [
"/src"
],
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.3",
"@octokit/types": "^6.34.0",
"bump-cli": "^2.9.3"
},
"devDependencies": {
"@github/local-action": "^2.5.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-circus": "^27.5.1",
"nock": "^14.0.0-beta.16",
"prettier": "^3.4.2",
"rollup": "^4.30.1",
"stdout-stderr": "^0.1.13",
"ts-jest": "^29.2.5",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}