This repository has been archived by the owner on Apr 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
187 lines (187 loc) · 4.86 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
{
"name": "tester",
"main": "./lib/main",
"author": "yacut",
"version": "1.4.0",
"description": "A interactive test runner with IDE based Feedback",
"keywords": [
"test",
"tester",
"testing",
"interactive",
"mocha",
"jest",
"phpunit",
"wallaby.js"
],
"repository": "https://github.com/yacut/tester",
"bugs": {
"url": "https://github.com/yacut/tester/issues"
},
"license": "MIT",
"engines": {
"atom": ">=1.7.0 <2.0.0"
},
"scripts": {
"test": "(apm test) && (flow check) && (eslint . )"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
},
"tester": {
"versions": {
"^1.0.0": "consumeTester"
}
}
},
"deserializers": {
"tester-result-view": "deserializeResultView",
"tester-console-output": "deserializeConsoleOutput"
},
"dependencies": {
"ansi-to-html": "0.6.2",
"atom-package-deps": "4.6.0",
"etch": "0.12.4",
"glob-to-regexp": "0.3.0",
"redux": "3.6.0",
"redux-observable": "0.14.1",
"rxjs": "5.4.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-eslint": "7.2.3",
"babel-preset-es2015": "6.24.1",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-flowtype": "2.34.0",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "7.0.1",
"flow-bin": "0.47.0"
},
"configSchema": {
"testOnOpen": {
"title": "Test on Open",
"description": "Should test files on open?",
"type": "boolean",
"default": true
},
"testOnSave": {
"title": "Test on Save",
"description": "Should test files on save?",
"type": "boolean",
"default": true
},
"gutterEnabled": {
"title": "Gutter Enabled",
"description": "Should show test results in gutter highlights?",
"type": "boolean",
"default": true
},
"gutterPosition": {
"title": "Gutter Position",
"description": "Where should be the position of the gutter highlights?",
"enum": [
"Left",
"Right"
],
"type": "string",
"default": "Right"
},
"ansiToHtml": {
"title": "Convert ansi console output to html",
"description": "If console output has ansi colors should it convert to html colors?",
"type": "boolean",
"default": true
},
"showInlineError": {
"title": "Show errors inline after test run",
"description": "Should show errors in text editor after test run?",
"type": "boolean",
"default": false
},
"inlineErrorPosition": {
"title": "Inline error position",
"description": "Should show errors in text editor after or before test case?",
"type": "string",
"enum": [
"after",
"before",
"tail"
],
"default": "tail"
},
"showNotifications": {
"title": "Show notifications after test run",
"description": "Should show notifications after test run if editor not active?",
"type": "boolean",
"default": true
},
"scrollToBottom": {
"title": "Scroll console output to bottom after test run",
"description": "Should scroll console output to bottom after test run?",
"type": "boolean",
"default": true
},
"showStatusBar": {
"title": "Show status bar",
"description": "Should show status bar?",
"type": "boolean",
"default": true
},
"statusBarOnClick": {
"title": "Status Bar on click",
"description": "What should opens on status bar click?",
"type": "string",
"enum": [
"console",
"results",
"both"
],
"default": "both"
},
"statusBarPosition": {
"title": "Status bar position",
"description": "Which position should be status bar: left or right?",
"type": "string",
"enum": [
"Left",
"Right"
],
"default": "Left"
},
"statusBarPriority": {
"title": "Status bar priority",
"description": "Lower priority tiles are placed further to the position side.",
"type": "integer",
"default": 0,
"minimum": -1000,
"maximum": 1000
},
"softWrapDefault": {
"title": "Soft Wrap default",
"description": "Should wrap the text in results view?",
"type": "boolean",
"default": true
},
"removeCurrentFileFilterIfProjectTest": {
"title": "Remove current file only filter if project test run",
"description": "Should remove current file filter if project test run?",
"type": "boolean",
"default": true
},
"testStateStyle": {
"title": "Test state style",
"description": "Show results state as text or icon?",
"type": "string",
"enum": [
"Text",
"Icon"
],
"default": "Text"
}
}
}