-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.syntest-projects.json
356 lines (338 loc) · 14.8 KB
/
.syntest-projects.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
{
"target-root-directory": "./benchmark/axios",
"target-include": [
"./benchmark/axios/lib/adapters/http.js"
],
"analysis-include": [
"./benchmark/axios/lib/**/*.js"
],
"analysis-exclude": [
"./benchmark/axios/**/*.test.js",
"./benchmark/axios/test/**/*.*",
"./benchmark/axios/node_modules/**/*.*"
],
"target-root-directory": "./benchmark/commanderjs",
"target-include": [
"./benchmark/commanderjs/lib/help.js",
"./benchmark/commanderjs/lib/option.js",
"./benchmark/commanderjs/lib/suggestSimilar.js"
],
"analysis-include": [
"./benchmark/commanderjs/**/*.js"
],
"analysis-exclude": [
"./benchmark/commanderjs/**/*.test.js",
"./benchmark/commanderjs/test/**/*.*",
"./benchmark/commanderjs/node_modules/**/*.*"
],
"target-root-directory": "./benchmark/numbers.js",
"target-include": [
"./benchmark/numbers.js/lib/numbers/basic.js"
],
"analysis-include": [
"./benchmark/numbers.js/lib/**/*.js"
],
"analysis-exclude": [
"./benchmark/numbers.js/**/*.test.js",
"./benchmark/numbers.js/test/**/*.*",
"./benchmark/numbers.js/node_modules/**/*.*"
],
"target-root-directory": "./benchmark/express",
"target-include": [
"./benchmark/express/lib/application.js",
"./benchmark/express/lib/middleware/query.js",
"./benchmark/express/lib/request.js",
"./benchmark/express/lib/response.js",
"./benchmark/express/lib/utils.js",
"./benchmark/express/lib/view.js"
],
"analysis-include": [
"./benchmark/express/lib/**/*.js"
],
"analysis-exclude": [
"./benchmark/express/**/*.test.js",
"./benchmark/express/test/**/*.*",
"./benchmark/express/node_modules/**/*.*"
],
"target-root-directory": "./benchmark/javascript-algorithms",
"target-include": [
"./benchmark/javascript-algorithms/src/algorithms/graph/articulation-points/articulationPoints.js",
"./benchmark/javascript-algorithms/src/algorithms/graph/bellman-ford/bellmanFord.js",
"./benchmark/javascript-algorithms/src/algorithms/graph/travelling-salesman/bfTravellingSalesman.js",
"./benchmark/javascript-algorithms/src/algorithms/graph/breadth-first-search/breadthFirstSearch.js",
"./benchmark/javascript-algorithms/src/algorithms/graph/depth-first-search/depthFirstSearch.js",
"./benchmark/javascript-algorithms/src/algorithms/graph/detect-cycle/detectDirectedCycle.js",
"./benchmark/javascript-algorithms/src/algorithms/graph/detect-cycle/detectUndirectedCycle.js",
"./benchmark/javascript-algorithms/src/algorithms/graph/dijkstra/dijktra.js",
"./benchmark/javascript-algorithms/src/algorithms/graph/eulerian-path/eulerianPath.js",
"./benchmark/javascript-algorithms/src/algorithms/graph/floyd-warshall/floydWarshall.js",
"./benchmark/javascript-algorithms/src/algorithms/graph/hamiltonian-cycle/hamiltonianCycle.js",
"./benchmark/javascript-algorithms/src/algorithms/graph/kruskal/kruskal.js",
"./benchmark/javascript-algorithms/src/algorithms/graph/prim/prim.js",
"./benchmark/javascript-algorithms/src/algorithms/graph/strongly-connected-components/stronglyConnectedComponents.js",
"./benchmark/javascript-algorithms/src/algorithms/sets/knapsack-problem/Knapsack.js",
"./benchmark/javascript-algorithms/src/algorithms/sets/knapsack-problem/KnapsackItem.js",
"./benchmark/javascript-algorithms/src/algorithms/math/matrix/Matrix.js",
"./benchmark/javascript-algorithms/src/algorithms/sorting/counting-sort/CountingSort.js",
"./benchmark/javascript-algorithms/src/data-structures/tree/red-black-tree/RedBlackTree.js"
],
"analysis-include": [
"./benchmark/javascript-algorithms/src/**/*.js"
],
"analysis-exclude": [
"./benchmark/javascript-algorithms/**/*.test.js",
"./benchmark/javascript-algorithms/test/**/*.*",
"./benchmark/javascript-algorithms/node_modules/**/*.*"
],
"target-root-directory": "./benchmark/lodash",
"target-include": [
"./benchmark/lodash/.internal/equalArrays.js",
"./benchmark/lodash/hasPath.js",
"./benchmark/lodash/random.js",
"./benchmark/lodash/results.js",
"./benchmark/lodash/slice.js",
"./benchmark/lodash/split.js",
"./benchmark/lodash/toNumber.js",
"./benchmark/lodash/transform.js",
"./benchmark/lodash/truncate.js",
"./benchmark/lodash/unzip.js"
],
"analysis-include": [
"./benchmark/lodash/**/*.js"
],
"analysis-exclude": [
"./benchmark/lodash/**/*.test.js",
"./benchmark/lodash/test/**/*.*",
"./benchmark/lodash/node_modules/**/*.*"
],
"target-root-directory": "./benchmark/moment",
"target-include": [
"./benchmark/moment/src/lib/moment/add-subtract.js",
"./benchmark/moment/src/lib/moment/calendar.js",
"./benchmark/moment/src/lib/create/check-overflow.js",
"./benchmark/moment/src/lib/moment/compare.js",
"./benchmark/moment/src/lib/moment/constructor.js",
"./benchmark/moment/src/lib/create/date-from-array.js",
"./benchmark/moment/src/lib/moment/format.js",
"./benchmark/moment/src/lib/create/from-anything.js",
"./benchmark/moment/src/lib/create/from-array.js",
"./benchmark/moment/src/lib/create/from-object.js",
"./benchmark/moment/src/lib/create/from-string-and-array.js",
"./benchmark/moment/src/lib/create/from-string-and-format.js",
"./benchmark/moment/src/lib/create/from-string.js",
"./benchmark/moment/src/lib/moment/get-set.js",
"./benchmark/moment/src/lib/create/locale.js",
"./benchmark/moment/src/lib/moment/min-max.js",
"./benchmark/moment/src/lib/moment/now.js",
"./benchmark/moment/src/lib/create/parsing-flags.js",
"./benchmark/moment/src/lib/moment/start-end-of.js",
"./benchmark/moment/src/lib/create/valid.js"
],
"analysis-include": [
"./benchmark/moment/src/**/*.js"
],
"analysis-exclude": [
"./benchmark/moment/**/*.test.js",
"./benchmark/moment/test/**/*.*",
"./benchmark/moment/node_modules/**/*.*"
],
"target-root-directory": "./experimental-benchmark/voca",
"target-include": [
"./experimental-benchmark/voca/src/strip/strip_tags.js",
"./experimental-benchmark/voca/src/helper/format/replacement/compute.js",
"./experimental-benchmark/voca/src/manipulate/tr.js",
"./experimental-benchmark/voca/src/helper/format/type_format/float.js",
"./experimental-benchmark/voca/src/manipulate/replace_all.js",
"./experimental-benchmark/voca/src/manipulate/word_wrap.js",
"./experimental-benchmark/voca/src/helper/strip/parse_tag_name.js",
"./experimental-benchmark/voca/src/helper/format/type_format/integer_base.js",
"./experimental-benchmark/voca/src/chop/code_point_at.js",
"./experimental-benchmark/voca/src/helper/object/get_global.js",
"./experimental-benchmark/voca/src/manipulate/trim_left.js",
"./experimental-benchmark/voca/src/manipulate/trim_right.js",
"./experimental-benchmark/voca/src/case/title_case.js",
"./experimental-benchmark/voca/src/chop/prune.js",
"./experimental-benchmark/voca/src/count/count_substrings.js",
"./experimental-benchmark/voca/src/manipulate/repeat.js",
"./experimental-benchmark/voca/src/manipulate/splice.js",
"./experimental-benchmark/voca/src/query/ends_with.js",
"./experimental-benchmark/voca/src/query/is_numeric.js",
"./experimental-benchmark/voca/src/chain/wrapper.js",
"./experimental-benchmark/voca/src/count/count_where.js",
"./experimental-benchmark/voca/src/helper/format/align_and_pad.js",
"./experimental-benchmark/voca/src/helper/format/replacement/validate.js",
"./experimental-benchmark/voca/src/helper/string/diacritics_map.js",
"./experimental-benchmark/voca/src/index/search.js",
"./experimental-benchmark/voca/src/manipulate/insert.js",
"./experimental-benchmark/voca/src/manipulate/trim.js",
"./experimental-benchmark/voca/src/query/includes.js",
"./experimental-benchmark/voca/src/query/starts_with.js",
"./experimental-benchmark/voca/src/split/words.js",
"./experimental-benchmark/voca/src/case/camel_case.js",
"./experimental-benchmark/voca/src/case/capitalize.js",
"./experimental-benchmark/voca/src/chop/first.js",
"./experimental-benchmark/voca/src/chop/grapheme_at.js",
"./experimental-benchmark/voca/src/chop/last.js",
"./experimental-benchmark/voca/src/chop/truncate.js",
"./experimental-benchmark/voca/src/helper/format/conversion_specification.js",
"./experimental-benchmark/voca/src/helper/format/replacement/index.js",
"./experimental-benchmark/voca/src/helper/format/type_format/add_sign_to_formatted_number.js",
"./experimental-benchmark/voca/src/helper/format/type_format/string.js",
"./experimental-benchmark/voca/src/helper/number/clip_number.js",
"./experimental-benchmark/voca/src/helper/number/coerce_to_number.js",
"./experimental-benchmark/voca/src/helper/number/to_integer.js",
"./experimental-benchmark/voca/src/helper/string/coerce_to_string.js",
"./experimental-benchmark/voca/src/helper/string/surrogate_pair.js",
"./experimental-benchmark/voca/src/helper/string/unicode_size.js",
"./experimental-benchmark/voca/src/helper/string/to_string.js",
"./experimental-benchmark/voca/src/manipulate/pad.js",
"./experimental-benchmark/voca/src/manipulate/pad_left.js",
"./experimental-benchmark/voca/src/manipulate/pad_right.js",
"./experimental-benchmark/voca/src/query/matches.js",
"./experimental-benchmark/voca/src/split/code_points.js",
"./experimental-benchmark/voca/src/strip/strip_bom.js"
],
"analysis-include": [
"./experimental-benchmark/voca/src/**/*.js"
],
"analysis-exclude": [
"./experimental-benchmark/voca/**/*.test.js",
"./experimental-benchmark/voca/test/**/*.*",
"./experimental-benchmark/voca/node_modules/**/*.*"
],
"target-root-directory": "./experimental-benchmark/accounting.js/",
"target-include": [
"./experimental-benchmark/accounting.js/accounting.js"
],
"analysis-include": [
"./experimental-benchmark/accounting.js/**/*.js"
],
"analysis-exclude": [
"./experimental-benchmark/accounting.js/**/*.test.js",
"./experimental-benchmark/accounting.js/test/**/*.*",
"./experimental-benchmark/accounting.js/node_modules/**/*.*"
],
"target-root-directory": "./experimental-benchmark/array/",
"target-include": [
"./experimental-benchmark/array/lib/array.js",
"./experimental-benchmark/array/lib/enumerable.js"
],
"analysis-include": [
"./experimental-benchmark/array/lib/**/*.js"
],
"analysis-exclude": [
"./experimental-benchmark/array/**/*.test.js",
"./experimental-benchmark/array/test/**/*.*",
"./experimental-benchmark/array/node_modules/**/*.*"
],
"target-root-directory": "./experimental-benchmark/arraygeous",
"target-include": [
"./experimental-benchmark/arraygeous/src/sort.js",
"./experimental-benchmark/arraygeous/src/cor.js",
"./experimental-benchmark/arraygeous/src/mode.js",
"./experimental-benchmark/arraygeous/src/closest.js",
"./experimental-benchmark/arraygeous/src/extent.js",
"./experimental-benchmark/arraygeous/src/cumsum.js",
"./experimental-benchmark/arraygeous/src/deviation.js",
"./experimental-benchmark/arraygeous/src/max.js",
"./experimental-benchmark/arraygeous/src/maxIndex.js",
"./experimental-benchmark/arraygeous/src/min.js",
"./experimental-benchmark/arraygeous/src/minIndex.js",
"./experimental-benchmark/arraygeous/src/variance.js",
"./experimental-benchmark/arraygeous/src/mean.js",
"./experimental-benchmark/arraygeous/src/sum.js",
"./experimental-benchmark/arraygeous/src/count.js",
"./experimental-benchmark/arraygeous/src/diff.js",
"./experimental-benchmark/arraygeous/src/median.js",
"./experimental-benchmark/arraygeous/src/unique.js",
"./experimental-benchmark/arraygeous/src/every.js",
"./experimental-benchmark/arraygeous/src/filter.js",
"./experimental-benchmark/arraygeous/src/find.js",
"./experimental-benchmark/arraygeous/src/findIndex.js",
"./experimental-benchmark/arraygeous/src/includes.js",
"./experimental-benchmark/arraygeous/src/meanroll.js",
"./experimental-benchmark/arraygeous/src/some.js"
],
"analysis-include": [
"./experimental-benchmark/arraygeous/src/**/*.js"
],
"analysis-exclude": [
"./experimental-benchmark/arraygeous/**/*.test.js",
"./experimental-benchmark/arraygeous/test/**/*.*",
"./experimental-benchmark/arraygeous/node_modules/**/*.*"
],
// Not suitable for benchmark (ESM module)
"target-root-directory": "./experimental-benchmark/camelcase",
"target-include": [
"./experimental-benchmark/camelcase/index.js"
],
"analysis-include": [
"./experimental-benchmark/camelcase/**/*.js"
],
"analysis-exclude": [
"./experimental-benchmark/camelcase/**/*.test.js",
"./experimental-benchmark/camelcase/test/**/*.*",
"./experimental-benchmark/camelcase/node_modules/**/*.*"
],
"target-root-directory": "./experimental-benchmark/Case",
"target-include": [
"./experimental-benchmark/Case/src/Case.js"
],
"analysis-include": [
"./experimental-benchmark/Case/src/**/*.js"
],
"analysis-exclude": [
"./experimental-benchmark/Case/**/*.test.js",
"./experimental-benchmark/Case/test/**/*.*",
"./experimental-benchmark/Case/node_modules/**/*.*"
],
// Uses some kind of half type script import syntax
"target-root-directory": "./benchmark/react/packages",
"target-include": [
"./benchmark/react/packages/react/src/ReactElementValidator.js",
"./benchmark/react/packages/react/src/ReactElement.js",
"./benchmark/react/packages/react/src/ReactChildren.js",
"./benchmark/react/packages/react/src/ReactAct.js"
],
"analysis-include": [
"./experimental-benchmark/react/src/**/*.js"
],
"analysis-exclude": [
"./experimental-benchmark/react/**/*.test.js",
"./experimental-benchmark/react/test/**/*.*",
"./experimental-benchmark/react/node_modules/**/*.*"
],
// Frontend code
"target-root-directory": "./benchmark/bootstrap",
"target-include": [
"./benchmark/bootstrap/js/src/dropdown.js",
"./benchmark/bootstrap/js/src/tooltip.js",
"./benchmark/bootstrap/js/src/carousel.js",
"./benchmark/bootstrap/js/src/modal.js",
"./benchmark/bootstrap/js/src/tab.js",
"./benchmark/bootstrap/js/src/collapse.js",
"./benchmark/bootstrap/js/src/scrollspy.js",
"./benchmark/bootstrap/js/src/offcanvas.js"
],
"analysis-include": [
"./experimental-benchmark/react/src/**/*.js"
],
"analysis-exclude": [
"./experimental-benchmark/react/**/*.test.js",
"./experimental-benchmark/react/test/**/*.*",
"./experimental-benchmark/react/node_modules/**/*.*"
]
// cannot install dependencies
"target-root-directory": "./benchmark/plato/lib",
"target-include": [
"./benchmark/plato/lib/plato.js",
"./benchmark/plato/lib/cli.js",
"./benchmark/plato/lib/util.js"
],
// no coverage??
"target-root-directory": "./benchmark/nyc",
"target-include": [
"./benchmark/nyc/lib/commands/instrument.js",
"./benchmark/nyc/lib/commands/helpers.js"
],
}