forked from atom/fuzzy-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.73 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
{
"name": "xob-fuzzy-finder",
"version": "1.4.1",
"main": "./lib/main",
"description": "Open an editor to a file in the project with `cmd-t`.",
"repository": "https://github.com/xob/xob-fuzzy-finder",
"license": "MIT",
"dependencies": {
"async": "0.2.6",
"atom-space-pen-views": "^2.0.0",
"fs-plus": "^2.0.0",
"fuzzaldrin": "^2.0",
"fuzzaldrin-plus": "^0.4.1",
"humanize-plus": "~1.8.2",
"minimatch": "~3.0.3",
"temp": "~0.8.1",
"underscore-plus": "^1.0.0",
"wrench": "^1.5"
},
"engines": {
"atom": "*"
},
"devDependencies": {
"coffeelint": "^1.9.7"
},
"consumedServices": {
"atom.file-icons": {
"versions": {
"1.0.0": "consumeFileIcons"
}
}
},
"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."
},
"useAlternateScoring": {
"type": "boolean",
"default": true,
"description": "Use an alternative scoring approach which prefers run of consecutive characters, acronyms and start of words. (Experimental)"
}
}
}