-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
67 lines (67 loc) · 1.36 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
{
"name": "@release-it/bumper",
"version": "6.0.1",
"description": "Version read/write plugin for release-it",
"type": "module",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"scripts": {
"test": "bron test.js",
"release": "release-it"
},
"keywords": [
"release",
"release-it",
"release-it-plugin",
"version",
"bump",
"increment",
"manifest"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/release-it/bumper.git"
},
"homepage": "https://github.com/release-it/bumper#readme",
"bugs": "https://github.com/release-it/bumper/issues",
"author": {
"email": "lars@webpro.nl",
"name": "Lars Kappert"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"detect-indent": "7.0.1",
"fast-glob": "^3.3.2",
"ini": "^4.1.1",
"js-yaml": "^4.1.0",
"lodash-es": "^4.17.21",
"semver": "^7.3.7"
},
"devDependencies": {
"bron": "^2.0.3",
"mock-fs": "5.2.0",
"release-it": "^17.0.0",
"sinon": "^15.2.0"
},
"peerDependencies": {
"release-it": "^17.0.0"
},
"engines": {
"node": ">=18"
},
"release-it": {
"hooks": {
"before:init": "npm test"
},
"github": {
"tokenRef": "GITHUB_TOKEN_RELEASE_IT",
"release": true,
"comments": {
"submit": true
}
}
}
}