-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.56 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
{
"name": "@novemberfiveco/highvoltage-js",
"version": "1.0.2",
"description": "Highvoltage runs Danger.js for your N5 project",
"main": "dangerfile.js",
"repository": {
"type": "git",
"url": "git://github.com/novemberfiveco/highvoltage-js.git"
},
"author": "Jan Stevens <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18.18.0"
},
"bin": {
"highvoltage": "./bin/cli.sh"
},
"files": [
"plugins/",
"dangerfile.js",
"bin/"
],
"dependencies": {
"danger": "11.3.1",
"eslint": "8.57.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"prettier": "3.2.5",
"release-it": "^17.1.1"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"release": "release-it",
"format": "prettier --write ."
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true,
"autoGenerate": true,
"tokenRef": "GITHUB_TOKEN"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance improvements"
}
]
},
"infile": "CHANGELOG.md",
"ignoreRecommendedBump": true
}
}
}
}