-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.1 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.1 KB
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
{
"name": "@hickorytechnology/semantic-release-github",
"description": "semantic-release plugin to publish a GitHub release and comment on released Pull Requests/Issues",
"version": "1.0.4",
"author": "Josh Sullivan (https://twitter.com/jaysche_)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hickorytechnology/semantic-release-github.git"
},
"bugs": {
"url": "https://github.com/hickorytechnology/semantic-release-github/issues"
},
"homepage": "https://github.com/hickorytechnology/semantic-release-github#readme",
"keywords": [
"git",
"github",
"issue",
"notifications",
"publish",
"pull-request",
"release",
"semantic-release",
"version"
],
"contributors": [],
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"src"
],
"main": "dist/index.js",
"module": "dist/semantic-release-github.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --coverage",
"lint": "tsdx lint",
"size": "size-limit",
"analyze": "size-limit --why",
"commit": "git-cz",
"prepare": "husky install"
},
"peerDependencies": {
"semantic-release": ">=16.0.0 <18.0.0"
},
"dependencies": {
"@octokit/openapi-types": "^8.3.0",
"@octokit/plugin-retry": "^3.0.9",
"@octokit/plugin-throttling": "^3.5.1",
"@octokit/rest": "^18.6.7",
"@semantic-release/error": "^2.2.0",
"@tsed/logger": "^5.15.0",
"aggregate-error": "^3.0.0",
"dir-glob": "^3.0.0",
"fs-extra": "^10.0.0",
"globby": "^11.0.0",
"http-proxy-agent": "^4.0.0",
"https-proxy-agent": "^5.0.0",
"issue-parser": "^6.0.0",
"lodash": "^4.17.4",
"mime": "^2.4.3",
"nock": "^13.1.1",
"p-filter": "^2.0.0",
"ts-dotenv": "^0.8.3",
"url-join": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-angular": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@size-limit/preset-small-lib": "^5.0.2",
"@types/debug": "^4.1.5",
"@types/dir-glob": "^2.0.0",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/mime": "^2.0.3",
"@types/semantic-release": "^17.2.0",
"@types/url-join": "^4.0.0",
"codecov": "3.8.2",
"commitizen": "^4.2.4",
"git-cz": "^4.7.6",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.1.1",
"proxy": "1.0.2",
"semantic-release": "^17.4.3",
"setimmediate": "^1.0.5",
"size-limit": "^5.0.2",
"tempy": "1.0.0",
"ts-jest": "^27.0.3",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix"
},
"size-limit": [
{
"path": "dist/tsdxlib.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/tsdxlib.esm.js",
"limit": "10 KB"
}
]
}