-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.27 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
{
"name": "@moodboom/git-semver",
"version": "5.1.1",
"description": "An automated git semantic versioning command line system to optimize any developer's git workflow. Shave off hours of git tedium.",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js"
},
"files": [
"index.js",
"gsv.js",
"version-control.js",
"gsv-cmd.js",
"git-sync-cmd.js",
"git-sync-notag-cmd.js",
"git-version-cmd.js",
"git-version-clean-cmd.js",
"git-next-major-cmd.js",
"git-next-minor-cmd.js",
"git-next-patch-cmd.js",
"git-next-build-cmd.js",
"git-log-cmd.js",
"git-branchlog-cmd.js",
"git-tag-list-cmd.js",
"git-skip-cmd.js",
"git-noskip-cmd.js",
"git-skiplist-cmd.js",
"get-npm-adjusted-version-cmd.js",
"get-svn-rev-cmd.js",
"get-svn-last-changed-rev-cmd.js",
"npm-update-version-cmd.js",
"LICENSE",
"README.md"
],
"scripts": {
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/moodboom/git-semver.git"
},
"keywords": [
"git",
"semver",
"semantic-versioning"
],
"author": "Michael Behrns-Miller",
"homepage": "https://gitlab.com/moodboom/git-semver#readme",
"license": "MIT",
"preferGlobal": true,
"bugs": {
"url": "https://gitlab.com/moodboom/git-semver/issues"
},
"dependencies": {
"rad-scripts": "^5.0.4",
"window-size": "^1.1.1"
},
"bin": {
"git-sync": "git-sync-cmd.js",
"git-sync-notag": "git-sync-notag-cmd.js",
"get-npm-adjusted-version": "get-npm-adjusted-version-cmd.js",
"git-version": "git-version-cmd.js",
"git-version-clean": "git-version-clean-cmd.js",
"git-log": "git-log-cmd.js",
"git-branchlog": "git-branchlog-cmd.js",
"git-tag-list": "git-tag-list-cmd.js",
"git-next-build": "git-next-build-cmd.js",
"git-next-major": "git-next-major-cmd.js",
"git-next-minor": "git-next-minor-cmd.js",
"git-next-patch": "git-next-patch-cmd.js",
"git-skip": "git-skip-cmd.js",
"git-noskip": "git-noskip-cmd.js",
"git-skiplist": "git-skiplist-cmd.js",
"get-svn-rev": "get-svn-rev-cmd.js",
"get-svn-last-changed-rev": "get-svn-last-changed-rev-cmd.js",
"npm-update-version": "npm-update-version-cmd.js",
"gsv": "gsv-cmd.js"
}
}