This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
121 lines (121 loc) · 2.56 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
118
119
120
121
{
"name": "codestream",
"main": "./dist/codestream",
"version": "11.0.6",
"description": "GitHub pull requests and code reviews in your IDE. Eliminate context-switching between tools. Also integrates with GitLab, Bitbucket, Slack, Teams, Jira, Trello and more.",
"keywords": [
"chat",
"collaboration",
"review",
"github",
"slack"
],
"activationHooks": [
"core:loaded-shell-environment"
],
"repository": "https://github.com/TeamCodeStream/atom-client",
"license": "",
"engines": {
"atom": ">=1.40.0 <2.0.0"
},
"deserializers": {
"codestream/CodestreamView": "deserializeCodestreamView"
},
"uriHandler": {
"method": "handleURI",
"deferActivation": false
},
"package-deps": [
"split-diff"
],
"providedServices": {
"codestream-info": {
"description": "Provides environment config info",
"versions": {
"1.0.0": "provideEnvironmentConfig"
}
},
"codestream-debug-config": {
"description": "Controls to change the debug mode",
"versions": {
"1.0.0": "provideDebugConfig"
}
}
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"split-diff": {
"versions": {
"1.0.0": "consumeSplitDiff"
}
}
},
"configSchema": {
"serverUrl": {
"type": "string",
"default": "https://api.codestream.com",
"description": "Specifies the url to use to connect to the CodeStream service"
},
"team": {
"type": "string",
"default": "",
"description": "Specifies team name to sign into"
},
"avatars": {
"type": "boolean",
"default": true
},
"showMarkers": {
"type": "boolean",
"default": true
},
"autoHideMarkers": {
"type": "boolean",
"default": false
},
"autoSignIn": {
"type": "boolean",
"default": true,
"description": "Automatically sign in when restoring a window with a previous session"
},
"traceLevel": {
"type": "string",
"default": "verbose",
"enum": [
"silent",
"errors",
"verbose",
"debug"
]
},
"proxySupport": {
"type": "string",
"default": "off",
"enum": [
"on",
"off"
],
"description": "Specifies whether to support proxy servers. If 'on', the provided url will be used, otherwise the os/environment settings will be used"
},
"proxyUrl": {
"type": "string",
"default": ""
},
"proxyStrictSSL": {
"type": "boolean",
"default": true
},
"disableStrictSSL": {
"type": "boolean",
"default": false,
"description": "Allow self-signed certificates to be used in network requests"
}
},
"scripts": {},
"dependencies": {},
"devDependencies": {}
}