-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
74 lines (74 loc) · 1.64 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
{
"name": "@release-it/bumper",
"version": "7.0.0",
"description": "Version read/write plugin for release-it",
"type": "module",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"scripts": {
"test": "node --test test",
"release": "release-it"
},
"keywords": [
"release",
"release-it",
"release-it-plugin",
"version",
"bump",
"increment",
"manifest"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/release-it/bumper.git"
},
"homepage": "https://github.com/release-it/bumper#readme",
"bugs": {
"url": "https://github.com/release-it/bumper/issues"
},
"author": "Lars Kappert <[email protected]>",
"dependencies": {
"@iarna/toml": "^3.0.0",
"cheerio": "^1.0.0",
"detect-indent": "7.0.1",
"fast-glob": "^3.3.3",
"ini": "^5.0.0",
"js-yaml": "^4.1.0",
"lodash-es": "^4.17.21",
"semver": "^7.3.7"
},
"devDependencies": {
"installed-check": "^9.3.0",
"mock-fs": "5.4.1",
"release-it": "https://pkg.pr.new/release-it@14e578f",
"sinon": "^19.0.2"
},
"peerDependencies": {
"release-it": "^18.0.0"
},
"engines": {
"node": "^20.9.0 || >=22.0.0"
},
"release-it": {
"hooks": {
"before:init": "npm test && installed-check"
},
"github": {
"tokenRef": "GITHUB_TOKEN_RELEASE_IT",
"release": true,
"releaseNotes": {
"commit": "* ${commit.message} (${sha}){ - thanks @${author.login}!}",
"excludeMatches": [
"webpro"
]
},
"comments": {
"submit": true
}
}
},
"main": "index.js"
}