This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
forked from atom/tree-view
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
78 lines (78 loc) · 2.31 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
{
"name": "learn-ide-tree",
"version": "1.0.24",
"upstreamVersion": "0.213.1",
"main": "./lib/main",
"description": "A Tree View replacement for the Learn IDE",
"repository": "https://github.com/learn-co/learn-ide-tree",
"license": "MIT",
"engines": {
"atom": "*"
},
"primaryLearnIDEPackage": "learn-ide",
"private": true,
"dependencies": {
"atom-space-pen-views": "^2.1.1",
"dotenv": "^2.0.0",
"event-kit": "^1.0.0",
"fs-plus": "^2.3.0",
"minimatch": "~0.3.0",
"nsync-fs": "0.0.23",
"temp": "~0.8.1",
"underscore-plus": "^1.0.0"
},
"devDependencies": {
"coffeelint": "^1.9.7"
},
"consumedServices": {
"atom.file-icons": {
"versions": {
"1.0.0": "consumeFileIcons"
}
}
},
"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."
},
"showOnRightSide": {
"type": "boolean",
"default": false,
"description": "Show the tree view on the right side of the editor instead of the left."
},
"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 a another pane."
}
}
}