-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 1.9 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
{
"name": "gf-release",
"version": "1.4.5",
"description": "gitflow release node script",
"bin": {
"gf-release": "./bin/gf-release.js"
},
"preferGlobal": true,
"files": [
"bin",
"lib",
"yarn.lock"
],
"scripts": {
"xo": "xo",
"test": "xo",
"prerelease": "xo",
"release": "./bin/gf-release.js",
"build": "echo \"Fake build command for testing\" && sleep 3;",
"history": "release-history -e 'Merge' -e 'bumped version' -e '(--)' -c https://github.com/stbaer/gf-release/commit -o History.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stbaer/gf-release.git"
},
"author": "stbaer",
"license": "MIT",
"bugs": {
"url": "https://github.com/stbaer/gf-release/issues"
},
"homepage": "https://github.com/stbaer/gf-release#readme",
"dependencies": {
"args": "3.0.2",
"chalk": "2.0.1",
"dateformat": "^2.0.0",
"exec-sh": "^0.2.0",
"inquirer": "3.1.1",
"loud-rejection": "^1.6.0",
"ora": "1.3.0",
"read-json-sync": "^1.1.1",
"release-history": "0.0.11",
"semver": "^5.3.0",
"shelljs": "0.7.8",
"tagged-versions": "^1.3.0",
"update-json": "^1.0.0"
},
"devDependencies": {
"xo": "0.18.2"
},
"releaseConfig": {
"versionFiles": [
"package.json"
],
"commitMessagesExclude": [
"Merge tag",
"Merge branch 'release",
"bumped",
"(--)"
],
"historyFile": "History.md",
"commitBaseUrl": "https://github.com/stbaer/gf-release/commit"
},
"xo": {
"esnext": true,
"rules": {
"indent": [
"error",
4
],
"no-unused-expressions": "off",
"unicorn/no-process-exit": "off"
}
},
"engines": {
"npm": ">=3.0.0",
"node": ">= 6.0.0"
},
"keywords": [
"gitflow",
"git",
"github",
"bitbucket",
"releases",
"cli",
"tags",
"push",
"node",
"script"
]
}