-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 981 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 981 Bytes
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
{
"name": "@netcracker/qubership-apihub-npm-gitflow",
"description": "Simple git flow API for node.js",
"license": "Apache-2.0",
"version": "3.1.2",
"keywords": [
"git",
"git flow"
],
"main": "bin/index.js",
"files": [
"bin",
"lib",
"LICENSE"
],
"bin": {
"feature-finish": "bin/feature-finish.js",
"feature-start": "bin/feature-start.js",
"bugfix-finish": "bin/bugfix-finish.js",
"bugfix-start": "bin/bugfix-start.js",
"release-finish": "bin/release-finish.js",
"release-start": "bin/release-start.js",
"hotfix-start": "bin/hotfix-start.js",
"hotfix-finish": "bin/hotfix-finish.js",
"update-lock-file": "bin/update-lock-file.js"
},
"dependencies": {
"command-line-args": "^5.0.2",
"edit-json-file": "^1.0.8",
"semver": "^5.5.1",
"simple-git": "^3.27.0",
"time-stamp": "^2.0.0"
},
"devDependencies": {
"rimraf": "2.6.2"
},
"scripts": {
"clean": "rimraf build"
}
}