-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 2.85 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@semantic-release/git",
"description": "semantic-release plugin to commit release assets to the project's git repository",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager (https://github.com/pvdlg)",
"type": "module",
"ava": {
"files": [
"test/**/*.test.js",
"!test/integration.test.js"
],
"timeout": "2m",
"workerThreads": false
},
"bugs": {
"url": "https://github.com/semantic-release/git/issues"
},
"contributors": [
"Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
"Gregor Martynus (https://twitter.com/gr2m)"
],
"dependencies": {
"@semantic-release/error": "^4.0.0",
"aggregate-error": "^5.0.0",
"debug": "^4.0.0",
"dir-glob": "^3.0.0",
"execa": "^10.0.0",
"lodash-es": "^4.17.21",
"micromatch": "^4.0.0",
"p-reduce": "^3.0.0"
},
"devDependencies": {
"ava": "8.0.1",
"c8": "12.0.0",
"git-log-parser": "1.2.1",
"lockfile-lint": "5.0.0",
"ls-engines": "0.10.1",
"npm-run-all2": "9.0.3",
"prettier": "3.9.6",
"publint": "0.3.22",
"semantic-release": "25.0.8",
"sinon": "22.1.0",
"tempy": "3.2.0"
},
"engines": {
"node": "^22.22.2 || >=24.15"
},
"exports": "./index.js",
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/semantic-release/git",
"keywords": [
"changelog",
"commit",
"conventional-changelog",
"conventional-commits",
"git",
"release",
"semantic-release",
"version"
],
"license": "MIT",
"peerDependencies": {
"semantic-release": ">=20.1.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/semantic-release/git.git"
},
"scripts": {
"lint": "prettier --check \"{lib,test}/**/*.{js,json,ts}\" \"*.{md,json,js}\" \".github/**/*.yml\"",
"lint:prettier": "prettier --check \"{lib,test}/**/*.{js,json,ts}\" \"*.{md,json,js}\" \".github/**/*.yml\"",
"lint:prettier:fix": "prettier --write \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{bin,lib,test}/**/*.js\"",
"lint:lockfile": "lockfile-lint",
"lint:engines": "ls-engines",
"lint:publish": "publint --strict",
"semantic-release": "semantic-release",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"test:unit": "c8 ava --verbose",
"test:integration": "ava --verbose --timeout=120s test/integration.test.js"
},
"c8": {
"include": [
"lib/**/*.js",
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"lockfile-lint": {
"path": "package-lock.json",
"type": "npm",
"validate-https": true,
"allowed-hosts": [
"npm"
]
},
"renovate": {
"extends": [
"github>semantic-release/.github:renovate-config"
]
}
}