forked from atom/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
162 lines (162 loc) · 4.71 KB
/
package.json
File metadata and controls
162 lines (162 loc) · 4.71 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
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
{
"name": "github",
"main": "./lib/index",
"version": "0.15.1",
"description": "GitHub integration",
"repository": "https://github.com/atom/github",
"license": "MIT",
"scripts": {
"test": "atom --test test",
"lint": "eslint --max-warnings 0 test lib",
"fetch-schema": "node script/fetch-schema",
"relay": "relay-compiler --src ./lib --schema graphql/schema.graphql"
},
"engines": {
"atom": ">=1.18.0"
},
"atomTestRunner": "./test/runner",
"atomTranspilers": [
{
"glob": "{lib,test}/**/*.js",
"transpiler": "atom-babel6-transpiler",
"options": {
"cacheKeyFiles": [
"package.json",
".babelrc",
"assert-messages-plugin.js",
"graphql/schema.graphql"
]
}
}
],
"dependencies": {
"atom-babel6-transpiler": "1.1.3",
"babel-generator": "6.26.1",
"babel-plugin-chai-assert-async": "0.1.0",
"babel-plugin-relay": "1.6.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-react": "6.24.1",
"classnames": "2.2.5",
"compare-sets": "1.0.1",
"dugite": "1.64.0",
"event-kit": "2.5.0",
"fs-extra": "4.0.3",
"graphql": "0.13.2",
"keytar": "4.2.1",
"lodash.memoize": "4.1.2",
"moment": "2.22.1",
"prop-types": "15.6.1",
"react": "16.4.0",
"react-dom": "16.4.0",
"react-relay": "1.6.0",
"react-select": "1.2.1",
"relay-runtime": "1.6.0",
"temp": "0.8.3",
"tinycolor2": "1.4.1",
"tree-kill": "1.2.0",
"what-the-diff": "0.4.0",
"what-the-status": "1.0.3",
"yubikiri": "1.0.0"
},
"devDependencies": {
"atom-mocha-test-runner": "1.2.0",
"babel-eslint": "8.2.3",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"dedent-js": "1.0.1",
"electron-devtools-installer": "2.2.4",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "4.19.1",
"eslint-config-fbjs-opensource": "1.0.0",
"hock": "1.3.2",
"lodash.isequal": "4.5.0",
"mkdirp": "0.5.1",
"mocha-appveyor-reporter": "0.4.0",
"mocha-junit-and-console-reporter": "1.6.0",
"mocha-stress": "1.0.0",
"node-fetch": "2.1.2",
"relay-compiler": "1.6.0",
"sinon": "5.0.10",
"test-until": "1.1.1"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"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"
}
},
"deserializers": {
"GitTimingsView": "createGitTimingsView",
"IssueishPaneItem": "createIssueishPaneItemStub",
"GitDockItem": "createDockItemStub",
"GithubDockItem": "createDockItemStub",
"FilePatchControllerStub": "createFilePatchControllerStub"
}
}