-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.98 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.98 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
{
"name": "youtrack-cli",
"version": "0.5.0",
"description": "cli for youtrack",
"main": "dist/youtrack.js",
"types": "dist/youtrack.d.ts",
"bin": {
"youtrack": "bin/youtrack.js",
"youtrack-project": "bin/youtrack-project.js",
"youtrack-user": "bin/youtrack-user.js",
"youtrack-issue": "bin/youtrack-issue.js",
"youtrack-workitem": "bin/youtrack-workitem.js"
},
"scripts": {
"build": "tsc",
"dev": "watch 'npm run lint-fix && npm run build' src",
"prepare": "npm run lint && npm run build",
"postversion": "git push && git push --tags",
"lint": "tslint src/**/*.ts",
"lint-fix": "tslint src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shanehofstetter/youtrack-cli.git"
},
"bugs": {
"url": "https://github.com/shanehofstetter/youtrack-cli/issues"
},
"homepage": "https://github.com/shanehofstetter/youtrack-cli#readme",
"keywords": [
"youtrack",
"cli",
"jetbrains",
"rest",
"api",
"issue",
"tracking"
],
"author": "Shane Hofstetter",
"license": "ISC",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.1",
"configstore": "^4.0.0",
"html-to-text": "^4.0.0",
"inquirer": "^6.5.2",
"keytar": "^4.13.0",
"marked": "^0.7.0",
"marked-terminal": "github:shanehofstetter/marked-terminal",
"moment": "^2.24.0",
"os-locale": "^3.1.0",
"table": "^5.4.6",
"tslint": "^5.20.0",
"update-notifier": "^2.5.0",
"valid-url": "^1.0.9",
"youtrack-rest-client": "^1.4.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/configstore": "^2.1.1",
"@types/html-to-text": "^1.4.31",
"@types/inquirer": "0.0.43",
"@types/keytar": "^4.4.0",
"@types/node": "^10.14.20",
"@types/request-promise": "^4.1.44",
"@types/table": "^4.0.7",
"ts-node": "^7.0.1",
"typescript": "^3.6.3",
"watch": "^1.0.2"
},
"files": [
"dist",
"bin"
]
}