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 138
/
package.json
102 lines (102 loc) · 2.78 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
{
"name": "fuzzy-finder",
"version": "1.14.3",
"main": "./lib/main",
"description": "Open an editor to a file in the project with `cmd-t`.",
"repository": "https://github.com/atom/fuzzy-finder",
"license": "MIT",
"dependencies": {
"async": "0.2.6",
"atom-select-list": "^0.7.0",
"fs-plus": "^3.0.0",
"fuzzaldrin": "^2.0",
"fuzzaldrin-plus": "^0.6.0",
"@atom/fuzzy-native": "^1.1.2",
"humanize-plus": "~1.8.2",
"minimatch": "~3.0.3",
"temp": "~0.8.1",
"underscore-plus": "^1.7.0",
"vscode-ripgrep": "^1.2.5",
"wrench": "^1.5"
},
"devDependencies": {
"sinon": "9.0.3",
"standard": "^10.0.3"
},
"standard": {
"env": {
"atomtest": true,
"browser": true,
"jasmine": true,
"node": true
},
"globals": [
"atom"
],
"ignore": [
"spec/fixtures"
]
},
"engines": {
"atom": "*"
},
"consumedServices": {
"teletype": {
"versions": {
"0.0.1": "consumeTeletype"
}
},
"atom.file-icons": {
"versions": {
"1.0.0": "consumeFileIcons"
}
},
"file-icons.element-icons": {
"versions": {
"1.0.0": "consumeElementIcons"
}
},
"metrics-reporter": {
"versions": {
"^1.1.0": "consumeMetricsReporter"
}
}
},
"configSchema": {
"ignoredNames": {
"type": "array",
"default": [],
"description": "List of string glob patterns. Files and directories matching these patterns will be ignored. This list is merged with the list defined by the core `Ignored Names` config setting. Example: `.git, ._*, Thumbs.db`."
},
"searchAllPanes": {
"type": "boolean",
"default": false,
"description": "Search all panes when opening files. If disabled, only the active pane is searched. Holding `shift` inverts this setting."
},
"preserveLastSearch": {
"type": "boolean",
"default": false,
"description": "Remember the typed query when closing the fuzzy finder and use that as the starting query next time the fuzzy finder is opened."
},
"scoringSystem": {
"type": "string",
"default": "fast",
"description": "Scoring system to use. \"standard\" is the system used by other modals in Atom. \"alternate\" is an improved scoring system. \"fast\" is a much faster system, specially suitable for large projects. Default: \"fast\"",
"enum": [
"standard",
"alternate",
"fast"
]
},
"useRipGrep": {
"type": "boolean",
"default": true,
"description": "Use the substantially faster `ripgrep` crawler."
},
"prefillFromSelection": {
"type": "boolean",
"default": false,
"description": "Prefills search query with selected in current editor text"
}
}
}