-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "youtracker",
"description": "Create default branches based on YouTrack issues",
"version": "1.2.4",
"dependencies": {
"bluebird": "^3.5.1",
"child_process": "^1.0.2",
"path": "^0.12.7",
"readline": "^1.3.0",
"request": "^2.87.0",
"xml2js": "^0.4.19"
},
"repository": {
"type": "git",
"url": "https://github.com/fschaeffler/youtracker.git"
},
"keywords": [
"youtrack",
"git",
"issue",
"productivity"
],
"author": "Florian Schaeffler <[email protected]>",
"bugs": {
"url": "https://github.com/fschaeffler/youtracker/issues"
},
"homepage": "https://github.com/fschaeffler/youtracker",
"bin": {
"yt-issue-branch": "bin/yt-issue-branch.sh",
"yt-issue-branch-staging": "bin/yt-issue-branch-staging.sh",
"yt-issue-branch-production": "bin/yt-issue-branch-production.sh"
},
"scripts": {
"start": "node ./src/index.js",
"prestart": "if [ ! -d ./node_modules ]; then npm install; fi;",
"postinstall": "yt-issue-branch setup-no-enforce"
},
"files": [
"bin",
"src",
"README.md"
],
"license": "MIT"
}