-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "@bizon/semantic-release-config",
"version": "3.0.2",
"description": "Semantic Release configuration for Bizon repositories",
"repository": "https://github.com/bizon/semantic-release-config",
"author": "Bertrand Marron <[email protected]>",
"type": "module",
"exports": "./index.js",
"files": [
"index.js"
],
"license": "MIT",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w"
},
"dependencies": {
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3"
},
"devDependencies": {
"eslint-config-xo-bizon": "^3.0.3",
"semantic-release": "^24.2.1",
"xo": "^0.60.0"
},
"xo": {
"extends": "xo-bizon",
"semicolon": false,
"space": 2
},
"publishConfig": {
"access": "public"
},
"release": {
"extends": "./index.js"
},
"packageManager": "[email protected]+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a"
}