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 364
/
package.json
104 lines (104 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
103
104
{
"name": "tree-view",
"version": "0.229.1",
"main": "./lib/main",
"description": "Explore and open files in the current project.",
"repository": "https://github.com/atom/tree-view",
"license": "MIT",
"engines": {
"atom": "*"
},
"private": true,
"dependencies": {
"fs-plus": "^3.0.0",
"minimatch": "~0.3.0",
"pathwatcher": "^8.1.0",
"temp": "~0.9.0",
"underscore-plus": "^1.0.0"
},
"devDependencies": {
"coffeelint": "^1.9.7",
"standard": "^11.0.1"
},
"deserializers": {
"TreeView": "getTreeViewInstance"
},
"consumedServices": {
"atom.file-icons": {
"versions": {
"1.0.0": "consumeFileIcons"
}
},
"file-icons.element-icons": {
"versions": {
"1.0.0": "consumeElementIcons"
}
}
},
"providedServices": {
"tree-view": {
"description": "A tree-like view of directories and files",
"versions": {
"1.0.0": "provideTreeView"
}
}
},
"standard": {
"env": [
"browser",
"node",
"atomtest",
"jasmine"
],
"globals": [
"atom"
],
"ignore": [
"/spec/fixtures/"
]
},
"configSchema": {
"squashDirectoryNames": {
"type": "boolean",
"default": false,
"title": "Collapse directories",
"description": "Collapse directories that only contain a single directory."
},
"hideVcsIgnoredFiles": {
"type": "boolean",
"default": false,
"title": "Hide VCS Ignored Files",
"description": "Don't show files and directories ignored by the current project's VCS system. For example, projects using Git have these paths defined in their `.gitignore` file."
},
"hideIgnoredNames": {
"type": "boolean",
"default": false,
"description": "Don't show items matched by the `Ignored Names` core config setting."
},
"sortFoldersBeforeFiles": {
"type": "boolean",
"default": true,
"description": "When listing directory items, list subdirectories before listing files."
},
"autoReveal": {
"type": "boolean",
"default": false,
"description": "Reveal tree view entries when they become the active pane item."
},
"focusOnReveal": {
"type": "boolean",
"default": true,
"description": "Focus the tree view when revealing entries."
},
"alwaysOpenExisting": {
"type": "boolean",
"default": false,
"description": "When opening a file, always focus an already-existing view of the file even if it's in another pane."
},
"hiddenOnStartup": {
"type": "boolean",
"default": false,
"description": "When Atom is opened, the view is hidden."
}
}
}