forked from semantic-release/github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 2.66 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@semantic-release/github",
"description": "semantic-release plugin to publish a GitHub release and comment on released Pull Requests/Issues",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
"ava": {
"files": [
"test/**/*.test.js"
]
},
"bugs": {
"url": "https://github.com/semantic-release/github/issues"
},
"contributors": [
"Stephan Bönnemann <[email protected]> (http://boennemann.me)",
"Gregor Martynus (https://twitter.com/gr2m)"
],
"dependencies": {
"@octokit/rest": "^19.0.0",
"@semantic-release/error": "^3.0.0",
"aggregate-error": "^3.0.0",
"bottleneck": "^2.18.1",
"debug": "^4.0.0",
"dir-glob": "^3.0.0",
"fs-extra": "^11.0.0",
"globby": "^11.0.0",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.0",
"issue-parser": "^6.0.0",
"lodash": "^4.17.4",
"mime": "^3.0.0",
"p-filter": "^2.0.0",
"p-retry": "^4.0.0",
"url-join": "^4.0.0"
},
"devDependencies": {
"ava": "5.1.0",
"clear-module": "4.1.2",
"codecov": "3.8.3",
"nock": "13.3.0",
"nyc": "15.1.0",
"proxy": "1.0.2",
"proxyquire": "2.1.3",
"semantic-release": "20.1.1",
"server-destroy": "1.0.1",
"sinon": "15.0.1",
"tempy": "1.0.1",
"xo": "0.36.1"
},
"engines": {
"node": ">=14.17"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/semantic-release/github#readme",
"keywords": [
"git",
"github",
"issue",
"notifications",
"publish",
"pull-request",
"release",
"semantic-release",
"version"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"lib/**/*.js",
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"peerDependencies": {
"semantic-release": ">=18.0.0-beta.1"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/semantic-release/github.git"
},
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "xo",
"pretest": "npm run lint",
"semantic-release": "semantic-release",
"test": "nyc ava -v",
"test:ci": "nyc ava -v"
},
"xo": {
"prettier": true,
"space": true,
"rules": {
"camelcase": [
"error",
{
"properties": "never"
}
],
"unicorn/string-content": "off",
"unicorn/no-reduce": "off"
}
},
"renovate": {
"extends": [
"github>semantic-release/.github"
]
}
}