This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 393
/
package.json
233 lines (233 loc) · 7.02 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
{
"name": "github",
"main": "./lib/index",
"version": "0.36.10",
"description": "GitHub integration",
"repository": "https://github.com/atom/github",
"license": "MIT",
"scripts": {
"test": "node script/test",
"test:coverage": "node script/test-coverage",
"test:coverage:text": "nyc --reporter=text npm run test:coverage",
"test:coverage:html": "nyc --reporter=html npm run test:coverage",
"test:coverage:lcov": "npm run test:coverage",
"test:snapshot": "node script/test-snapshot",
"report:coverage": "nyc report --reporter=cobertura --reporter=html --reporter=lcovonly",
"lint": "eslint --max-warnings 0 test lib",
"fetch-schema": "node script/fetch-schema",
"relay": "relay-compiler --src ./lib --schema graphql/schema.graphql",
"postinstall": "node script/redownload-electron-bins.js"
},
"engines": {
"atom": ">=1.37.0"
},
"atomTestRunner": "./test/runner",
"atomTranspilers": [
{
"glob": "{lib,test}/**/*.js",
"transpiler": "@atom/babel7-transpiler",
"options": {
"cacheKeyFiles": [
"package.json",
".babelrc.js",
"assert-messages-plugin.js",
"graphql/schema.graphql",
".nycrc.json"
],
"setBabelEnv": "ATOM_GITHUB_BABEL_ENV"
}
}
],
"dependencies": {
"@atom/babel-plugin-chai-assert-async": "1.0.0",
"@atom/babel7-transpiler": "1.0.0-1",
"@babel/core": "7.x <7.12.10",
"@babel/generator": "7.8.0",
"@babel/plugin-proposal-class-properties": "7.8.0",
"@babel/plugin-proposal-object-rest-spread": "7.8.0",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.8.0",
"babel-plugin-relay": "5.0.0",
"bintrees": "1.0.2",
"bytes": "3.1.0",
"classnames": "2.2.6",
"compare-sets": "1.0.1",
"dompurify": "2.0.17",
"dugite": "1.92.0",
"event-kit": "2.5.3",
"fs-extra": "4.0.3",
"graphql": "14.5.8",
"keytar": "4.13.0",
"lodash.memoize": "4.1.2",
"marked": "0.8.0",
"moment": "2.28.0",
"node-emoji": "1.10.0",
"prop-types": "15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-relay": "5.0.0",
"react-select": "1.2.1",
"react-tabs": "^3.0.0",
"relay-runtime": "5.0.0",
"temp": "0.9.1",
"tinycolor2": "1.4.1",
"tree-kill": "1.2.2",
"underscore-plus": "1.7.0",
"what-the-diff": "0.6.0",
"what-the-status": "1.0.3",
"whats-my-line": "^0.1.4",
"yubikiri": "2.0.0"
},
"devDependencies": {
"@atom/mocha-test-runner": "1.6.0",
"babel-plugin-istanbul": "5.2.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"cross-unzip": "0.2.1",
"dedent-js": "1.0.1",
"electron-devtools-installer": "3.1.1",
"electron-link": "0.4.3",
"electron-mksnapshot": "^9.0.2",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.7.1",
"eslint": "6.8.0",
"eslint-config-fbjs-opensource": "1.0.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"globby": "10.0.1",
"hock": "1.4.1",
"lodash.isequal": "4.5.0",
"lodash.isequalwith": "4.4.0",
"mkdirp": "0.5.1",
"mocha": "6.2.2",
"mocha-junit-reporter": "1.23.1",
"mocha-multi-reporters": "1.1.7",
"mocha-stress": "1.0.0",
"node-fetch": "2.6.1",
"nyc": "14.1.1",
"relay-compiler": "5.0.0",
"semver": "6.3.0",
"sinon": "9.0.3",
"test-until": "1.1.1"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"metrics-reporter": {
"versions": {
"^1.1.0": "consumeReporter"
}
}
},
"configSchema": {
"keyboardNavigationDelay": {
"type": "number",
"default": 300,
"description": "How long to wait before showing a diff view after navigating to an entry with the keyboard"
},
"viewChangesForCurrentFileDiffPaneSplitDirection": {
"type": "string",
"default": "none",
"enum": [
"none",
"right",
"down"
],
"title": "Direction to open diff pane",
"description": "Direction to split the active pane when showing diff associated with open file. If 'none', the results will be shown in the active pane."
},
"gitDiagnostics": {
"type": "boolean",
"default": false,
"description": "Write detailed diagnostic information about git operations to the console"
},
"filesystemEventDiagnostics": {
"type": "boolean",
"default": false,
"description": "Trace observed filesystem events to the console"
},
"performanceMask": {
"type": "array",
"default": [
".*"
],
"items": {
"type": "string"
},
"description": "Performance event stream patterns to capture"
},
"performanceToConsole": {
"type": "boolean",
"default": false,
"description": "Log performance data to the console"
},
"performanceToDirectory": {
"type": "string",
"default": "",
"description": "Log performance data to JSON files in a directory"
},
"performanceToProfile": {
"type": "boolean",
"default": false,
"description": "Capture CPU profiles"
},
"automaticCommitMessageWrapping": {
"type": "boolean",
"default": true,
"description": "Hard wrap commit message body in commit box to 72 characters. Does not apply to expanded commit editors, where message formatting is preserved."
},
"graphicalConflictResolution": {
"type": "boolean",
"default": true,
"description": "Resolve merge conflicts with in-editor controls"
},
"showDiffIconGutter": {
"type": "boolean",
"default": false,
"description": "Show change regions within a file patch with icons in addition to color"
},
"excludedUsers": {
"type": "string",
"default": "",
"description": "Comma-separated list of email addresses to exclude from the co-author selection list"
},
"reportCannotLocateWorkspaceError": {
"type": "boolean",
"default": "false",
"description": "Log an error to the console if a git repository cannot be located for the opened file"
},
"sourceRemoteName": {
"type": "string",
"default": "origin",
"description": "Name of the git remote to create when creating a new repository"
},
"remoteFetchProtocol": {
"type": "string",
"default": "https",
"enum": [
"https",
"ssh"
],
"description": "Transport protocol to prefer when creating a new git remote"
}
},
"deserializers": {
"GitTimingsView": "createGitTimingsView",
"IssueishDetailItem": "createIssueishPaneItemStub",
"IssueishPaneItem": "createIssueishPaneItemStub",
"GitDockItem": "createDockItemStub",
"GithubDockItem": "createDockItemStub",
"FilePatchControllerStub": "createFilePatchControllerStub",
"CommitPreviewStub": "createCommitPreviewStub",
"CommitDetailStub": "createCommitDetailStub",
"ReviewsStub": "createReviewsStub"
},
"greenkeeper": {
"ignore": [
"electron-link",
"electron-mksnapshot"
]
}
}