forked from hex-ci/atom-tree-view-sort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 2.99 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
105
106
107
108
109
110
111
112
113
114
{
"name": "tree-view-sort",
"main": "./lib/tree-view-sort",
"version": "0.11.3",
"description": "Add a sorting feature for the Atom tree-view package.",
"keywords": [
"tree",
"tree-view",
"sorting",
"sort"
],
"repository": "https://github.com/hex-ci/atom-tree-view-sort",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {},
"configSchema": {
"descending": {
"title": "Descending Sorting",
"description": "Use descending sorting, otherwise use ascending sorting. Unavailable when the tree-view-sort package is disabled.",
"type": "boolean",
"default": false,
"order": 1
},
"caseSensitive": {
"title": "Case-Sensitive Sorting",
"description": "Use case-sensitive sorting, otherwise use case-insensitive sorting. Unavailable when the tree-view-sort package is disabled.",
"type": "boolean",
"default": true,
"order": 2
},
"isSortFolder": {
"title": "Sorting Folders",
"description": "Using the Sorting Folders will sort the folders, otherwise the folders will not be sorted. This option does not affect the option of the sort folders before or after files. Unavailable when the tree-view-sort package is disabled.",
"type": "boolean",
"default": true,
"order": 3
},
"type": {
"title": "Sort By",
"description": "The sorting type of the Atom tree-view package.",
"type": "integer",
"default": 1,
"enum": [
{
"value": 0,
"description": "Default (disable the tree-view-sort package)"
},
{
"value": 1,
"description": "File name"
},
{
"value": 9,
"description": "File name (ignore extension)"
},
{
"value": 2,
"description": "File extension name"
},
{
"value": 3,
"description": "File size"
},
{
"value": 4,
"description": "File access time"
},
{
"value": 5,
"description": "File change time"
},
{
"value": 6,
"description": "File modify time"
},
{
"value": 7,
"description": "File creation time"
},
{
"value": 8,
"description": "File group name"
}
],
"order": 4
},
"sortFolders": {
"title": "Sort Folders",
"description": "When listing directory items, sort folders before or after files.",
"type": "integer",
"default": 1,
"enum": [
{
"value": 0,
"description": "Sort files and folders together (normal behaviour)"
},
{
"value": 1,
"description": "Sort folders before files"
},
{
"value": 2,
"description": "Sort folders after files"
}
],
"order": 5
}
},
"devDependencies": {
"eslint": "^5.15.3"
}
}