forked from Gusto/semantic-release-rubygem
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 2.84 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@webhippie/semantic-release-rubygem",
"description": "semantic-release plugin to publish a gem to Rubygems",
"version": "0.0.0-development",
"type": "module",
"author": "Thomas Boerger (https://twitter.com/@tboerger)",
"ava": {
"files": [
"test/**/*.test.js",
"!test/integration.test.js"
],
"nodeArguments": [
"--no-warnings"
]
},
"bugs": {
"url": "https://github.com/webhippie/semantic-release-rubygem/issues"
},
"contributors": [
"Rylan Collins (https://github.com/rylanc)",
"Bulat Shakirzyanov (https://github.com/avalanche123)",
"Koyanagi Satoru (https://github.com/satoruk)"
],
"dependencies": {
"@semantic-release/error": "^4.0.0",
"execa": "^9.1.0",
"glob": "^10.4.1",
"tempy": "^3.1.0"
},
"devDependencies": {
"ava": "6.1.3",
"c8": "9.1.0",
"cpy": "11.0.1",
"cz-conventional-changelog": "3.3.0",
"fetch-mock": "npm:@gr2m/[email protected]",
"lockfile-lint": "4.13.2",
"ls-engines": "0.9.1",
"npm-run-all2": "6.2.0",
"prettier": "3.3.0",
"publint": "0.2.8",
"semantic-release": "24.0.0",
"sinon": "18.0.0",
"tempy": "3.1.0"
},
"engines": {
"node": ">=20.8.1"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/webhippie/semantic-release-rubygem#readme",
"keywords": [
"rubygems",
"publish",
"semantic-release",
"version"
],
"license": "MIT",
"exports": "./index.js",
"c8": {
"include": [
"lib/**/*.js",
"index.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lockfile-lint": {
"path": "package-lock.json",
"type": "npm",
"validate-https": true,
"allowed-hosts": [
"npm"
]
},
"peerDependencies": {
"semantic-release": ">=20.1.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/webhippie/semantic-release-rubygem.git"
},
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"lint:prettier": "prettier --check \"{lib,test}/**/*.{js,json,ts}\" \"*.{js,md,json}\" \".github/**/*.yml\"",
"lint:prettier:fix": "prettier --write \"{lib,test}/**/*.{js,json,ts}\" \"*.{js,md,json}\" \".github/**/*.yml\"",
"lint:lockfile": "lockfile-lint",
"lint:engines": "ls-engines",
"lint:publish": "publint --strict",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"test:unit": "c8 ava --verbose",
"test:integration": "ava --verbose test/integration.test.js"
},
"renovate": {
"extends": [
"github>semantic-release/.github:renovate-config"
]
},
"packageManager": "[email protected]"
}