-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
{
"name": "kubectl-roll-plugin",
"version": "1.0.4",
"description": "Slowly restart pods by namespace or label",
"main": "index.js",
"scripts": {
"release": "node_modules/.bin/semantic-release",
"release:dry-run": "npm run release -- --dry-run --no-ci",
"commitmsg": "node_modules/.bin/commitlint -e $GIT_PARAMS"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LifeWay/kubectl-roll-plugin.git"
},
"keywords": [
"circleci",
"kubernetes",
"cloudops",
"platforms"
],
"author": "Brant Taylor",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/LifeWay/kubectl-roll-plugin/issues"
},
"homepage": "https://github.com/LifeWay/kubectl-roll-plugind#readme",
"release": {
"branch": "master",
"tagFormat": "${version}",
"npmPublish": false,
"verifyConditions": [
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"publish": [
"@semantic-release/github"
]
},
"dependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@semantic-release/changelog": "5.0.0",
"@semantic-release/exec": "5.0.0",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.0.2",
"@semantic-release/npm": "7.0.2",
"husky": "4.2.1",
"semantic-release": "17.0.2"
}
}