forked from semantic-release/git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.15 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "semantic-release-git",
"description": "semantic-release plugin to commit release assets to the project's git repository",
"version": "0.0.0-development",
"author": "quaff (https://sr.ht/~quaff)",
"ava": {
"files": [
"test/**/*.test.js"
]
},
"bugs": {
"url": "https://github.com/englut/semantic-release-git/issues"
},
"contributors": [
"quaff (https://sr.ht/~quaff)"
],
"dependencies": {
"@semantic-release/error": "^3.0.0",
"aggregate-error": "^3.0.0",
"debug": "^4.0.0",
"dir-glob": "^3.0.0",
"execa": "^5.0.0",
"lodash": "^4.17.4",
"micromatch": "^4.0.0",
"p-reduce": "^2.0.0"
},
"devDependencies": {
"ava": "6.2.0",
"clear-module": "4.1.2",
"file-url": "3.0.0",
"fs-extra": "11.2.0",
"get-stream": "6.0.1",
"git-log-parser": "1.2.0",
"nyc": "15.1.0",
"prettier": "^3.4.2",
"semantic-release": "21.1.2",
"sinon": "17.0.1",
"tempy": "1.0.1"
},
"engines": {
"node": ">=18"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/englut/semantic-release-git#readme",
"keywords": [
"changelog",
"commit",
"conventional-changelog",
"conventional-commits",
"git",
"release",
"semantic-release",
"version"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"lib/**/*.js",
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"peerDependencies": {
"semantic-release": ">=18.0.0"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/englut/semantic-release-git.git"
},
"scripts": {
"lint": "prettier --check \"{lib,test}/**/*.{js,json}\"",
"lint:fix": "prettier --write \"{lib,test}/**/*.{js,json}\"",
"pretest": "npm run lint",
"semantic-release": "semantic-release",
"test": "nyc ava -v",
"test:ci": "nyc ava -v"
},
"renovate": {
"extends": [
"github>semantic-release/.github:renovate-config"
]
}
}