-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
72 lines (72 loc) · 1.77 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": "@semantic-release/exec",
"description": "semantic-release plugin to run custom shell commands",
"version": "0.0.0-development",
"type": "module",
"author": "Pierre Vanduynslager (https://github.com/pvdlg)",
"bugs": {
"url": "https://github.com/semantic-release/exec/issues"
},
"contributors": [
"Stephan Bönnemann <[email protected]> (http://boennemann.me)",
"Gregor Martynus (https://twitter.com/gr2m)"
],
"dependencies": {
"@semantic-release/error": "^4.0.0",
"aggregate-error": "^3.0.0",
"debug": "^4.0.0",
"execa": "^5.0.0",
"lodash-es": "^4.17.21",
"parse-json": "^8.0.0"
},
"devDependencies": {
"ava": "5.3.1",
"c8": "10.1.3",
"prettier": "3.4.2",
"semantic-release": "24.2.1",
"sinon": "17.0.1",
"stream-buffers": "3.0.3"
},
"engines": {
"node": ">=20.8.1"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/semantic-release/exec",
"keywords": [
"cli",
"publish",
"release",
"script",
"semantic-release",
"shell",
"version"
],
"license": "MIT",
"exports": "./index.js",
"main": "index.js",
"peerDependencies": {
"semantic-release": ">=24.1.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/semantic-release/exec.git"
},
"scripts": {
"lint": "prettier --check \"{lib,test}/**/*.{js,json,ts}\" \"*.{js,md,json}\" \".github/**/*.yml\"",
"lint:fix": "prettier --write \"{lib,test}/**/*.{js,json,ts}\" \"*.{js,md,json}\" \".github/**/*.yml\"",
"semantic-release": "semantic-release",
"test": "c8 ava -v"
},
"renovate": {
"extends": [
"github>semantic-release/.github:renovate-config"
]
}
}