-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathpackage.json
103 lines (103 loc) · 2.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
{
"name": "@semantic-release/github",
"description": "Set of semantic-release plugins for publishing a GitHub release",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
"bugs": {
"url": "https://github.com/semantic-release/github/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"contributors": [
"Stephan Bönnemann <[email protected]> (http://boennemann.me)",
"Gregor Martynus (https://twitter.com/gr2m)"
],
"dependencies": {
"@octokit/rest": "^14.0.9",
"@semantic-release/error": "^2.2.0",
"aggregate-error": "^1.0.0",
"bottleneck": "^2.0.1",
"debug": "^3.1.0",
"fs-extra": "^5.0.0",
"globby": "^8.0.0",
"issue-parser": "^1.0.1",
"lodash": "^4.17.4",
"mime": "^2.0.3",
"p-retry": "^1.0.0",
"parse-github-url": "^1.0.1",
"url-join": "^4.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"clear-module": "^2.1.0",
"codecov": "^3.0.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"nock": "^9.1.0",
"nyc": "^11.2.1",
"proxyquire": "^1.8.0",
"semantic-release": "^14.0.0",
"sinon": "^4.0.0",
"tempy": "^0.2.1",
"xo": "^0.20.0"
},
"engines": {
"node": ">=8.3"
},
"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
},
"prettier": {
"printWidth": 120
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"repository": {
"type": "git",
"url": "https://github.com/semantic-release/github.git"
},
"scripts": {
"cm": "git-cz",
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "xo",
"pretest": "npm run lint",
"semantic-release": "semantic-release",
"test": "nyc ava -v"
},
"xo": {
"prettier": true,
"space": true
}
}