-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.21 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
{
"name": "rtd-bot",
"version": "2.0.30",
"description": "An unofficial GitHub Action that helps reveiwing on Read the Docs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:action": "ncc build src/index.ts --source-map",
"test": "jest",
"postinstall": "npm run-script prepack",
"prepack": "tsc",
"all": "npm run build:action && npm test",
"prepare": "husky install"
},
"keywords": [
"github-actions",
"readthedocs",
"rtd"
],
"author": "Kengo TODA",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^5.0.0",
"fetch-retry": "^5.0.0",
"isomorphic-fetch": "^3.0.0"
},
"engines": {
"node": "^16.13.0"
},
"files": [
"dist"
],
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/isomorphic-fetch": "0.0.36",
"@types/node-fetch": "^3.0.3",
"@vercel/ncc": "^0.27.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.0",
"husky": "^8.0.1",
"jest": "^27.0.5",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"semantic-release": "^19.0.2",
"source-map-support": "^0.5.16",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.0.2"
},
"overrides": {
"minimist": ">=1.2.6",
"npm": ">=8.11.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/KengoTODA/readthedocs-action.git"
},
"release": {
"branches": "main",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/exec",
{
"prepare": "npm run build:action"
}
],
[
"@semantic-release/git",
{
"assets": [
"dist",
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"publishConfig": {
"access": "public"
}
}