-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 4.97 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "GitHubIssues",
"displayName": "GitHub Issues",
"description": "Track Issues in GitHub linked workspaces",
"version": "0.0.7",
"publisher": "HookyQR",
"engines": {
"vscode": "^0.10.5"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"icon": "icon.svg",
"galleryBanner": {
"color": "#e8e030",
"theme": "light"
},
"license": "MIT",
"main": "./extension",
"contributes": {
"commands": [{
"command": "HookyQR.GitHubIssues",
"title": "Git Hub Issues"
}],
"configuration": {
"type": "object",
"title": "Git Hub Issues",
"description": "Settings for the Git Hub Issues extension",
"properties": {
"GitHubIssues.authToken": {
"type": "string",
"description": "Your personal access token. See 'https://github.com/settings/tokens'"
},
"GitHubIssues.statusPos": {
"type": "string",
"enum": ["left", "right"],
"default": "left",
"description": "Display the Issues track icons on the left or right of the status bar"
},
"GitHubIssues.countInAllLabels": {
"type": "boolean",
"default": true,
"description": "If more than one tracked label is seen in a single issue, show the value in both."
},
"GitHubIssues.showLabelAs": {
"type": "object",
"description": "The label you want to track. Set the value of the item to one of the Octicons set (https://octicons.github.com)",
"default":{
"bug": "bug",
"Unlabelled": "info"
},
"items": {
"type": "string",
"description": "Icon to display for the label. (Multi use of icons will be collected)",
"enum": ["alert", "arrow-down", "arrow-left", "arrow-right", "arrow-small-down", "arrow-small-left",
"arrow-small-right", "arrow-small-up", "arrow-up", "beaker", "bell", "bold", "book", "bookmark", "briefcase",
"broadcast", "browser", "bug", "calendar", "check", "checklist", "chevron-down", "chevron-left",
"chevron-right", "chevron-up", "circle-slash", "circuit-board", "clippy", "clock", "cloud-download",
"cloud-upload", "code", "color-mode", "comment-discussion", "comment", "credit-card", "dash", "dashboard",
"database", "desktop-download", "device-camera-video", "device-camera", "device-desktop", "device-mobile",
"diff-added", "diff-ignored", "diff-modified", "diff-removed", "diff-renamed", "diff", "ellipsis", "eye",
"file-binary", "file-code", "file-directory", "file-media", "file-pdf", "file-submodule",
"file-symlink-directory", "file-symlink-file", "file-text", "file-zip", "flame", "fold", "gear", "gift",
"gist-secret", "gist", "git-branch", "git-commit", "git-compare", "git-merge", "git-pull-request", "globe",
"graph", "heart", "history", "home", "horizontal-rule", "hubot", "inbox", "info", "issue-closed",
"issue-opened", "issue-reopened", "italic", "jersey", "key", "keyboard", "law", "light-bulb", "link-external",
"link", "list-ordered", "list-unordered", "location", "lock", "logo-gist", "logo-github", "mail-read",
"mail-reply", "mail", "mark-github", "markdown", "megaphone", "mention", "milestone", "mirror", "mortar-board",
"mute", "no-newline", "octoface", "organization", "package", "paintcan", "pencil", "person", "pin", "plug",
"plus", "primitive-dot", "primitive-square", "pulse", "question", "quote", "radio-tower", "repo-clone",
"repo-force-push", "repo-forked", "repo-pull", "repo-push", "repo", "rocket", "rss", "ruby", "search", "server",
"settings", "shield", "sign-in", "sign-out", "squirrel", "star", "stop", "sync", "tag", "tasklist", "telescope",
"terminal", "text-size", "three-bars", "thumbsdown", "thumbsup", "tools", "trashcan", "triangle-down",
"triangle-left", "triangle-right", "triangle-up", "unfold", "unmute", "versions", "watch", "x", "zap"]
}
},
"GitHubIssues.showPullRequests": {
"type": ["string", "boolean"],
"enum": ["all", true, false],
"default": true,
"description": "'all' shows all open pull requests, true shows those that match label and assignee filters."
},
"GitHubIssues.assignee": {
"type": ["array", "string", "null"],
"default": "all",
"description": "Filter by assignee. {null} selects Unassigned issues. Use login to include an assignee.",
"items": {
"type": ["string", "null"],
"description": "Filter by assignee. {null} selects Unassigned issues. Use login to include an assignee."
}
},
"GitHubIssues.runEvery": {
"type": "integer",
"default": 5,
"description": "Run every n minutes. Minimum is 3 minutes if no authToken supplied.",
"minimum": 1
}
}
}
},
"devDependencies": {
"vscode": "^0.11.x"
},
"dependencies": {
"gitHubIssue":"0.0.2"
},
"repository": {
"type":"git",
"url":"https://github.com/HookyQR/VSCodeGitHubIssues"
},
"bugs":{
"url":"https://github.com/HookyQR/VSCodeGitHubIssues/issues"
}
}