forked from bump-sh/github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "bump-github-action",
"version": "1.1.5",
"description": "GitHub action to deploy your API documentation on Bump",
"main": "lib/main.js",
"bugs": "https://github.com/bump-sh/github-action/issues",
"homepage": "https://bump.sh",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc -b",
"clean": "rm -rf dist/",
"format": "eslint . --ext .ts --config .eslintrc --fix",
"format-check": "eslint . --ext .ts --config .eslintrc",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt -e typescript",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && 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.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.2",
"@oclif/core": "^1.16.4",
"@octokit/types": "^6.34.0",
"bump-cli": "^2.4.0"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^18.8.2",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.4.7",
"jest-circus": "^27.5.1",
"js-yaml": "^3.14.0",
"prettier": "^2.7.1",
"stdout-stderr": "^0.1.13",
"ts-jest": "^27.1.4",
"typescript": "^4.4.4"
}
}