-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "@jno21/semantic-release-github-commit",
"version": "1.0.0",
"description": "Semantic-release plugin to commit files to GitHub using the REST API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Jonathan Forget",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"homepage": "https://github.com/Jno21/semantic-release-github-commit#readme",
"keywords": [
"semantic-release",
"plugin",
"github",
"commit",
"git"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"peerDependencies": {
"semantic-release": ">=20.0.0"
},
"dependencies": {
"@octokit/rest": "^22.0.0",
"execa": "^9.6.0",
"globby": "^15.0.0"
},
"devDependencies": {
"@semantic-release/npm": "^13.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.22",
"jest": "^30.0.0",
"semantic-release": "^25.0.0",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
}
}