-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "semantish-prerelease",
"version": "0.0.0-development",
"description": "hacky wrapper around semantic release to create beta releases from PRs in circleci",
"main": "src/index.js",
"bin": {
"semantish-prerelease": "./cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/Xiphe/semantish-prerelease.git"
},
"keywords": [
"semantic",
"release",
"pre-release",
"beta-release",
"ci"
],
"author": "Hannes Diercks <[email protected]> (https://xiphe.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xiphe/semantish-prerelease/issues"
},
"homepage": "https://github.com/Xiphe/semantish-prerelease#readme",
"peerDependencies": {
"semantic-release": "^17 || ^18 || ^19",
"env-ci": "^5 || ^6 || ^7"
},
"devDependencies": {
"decorate-gh-pr": "1.3.4",
"semantic-release": "19.0.3"
},
"dependencies": {
"proxyquire": "2.1.3"
}
}