-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
{
"name": "zentabs",
"version": "0.8.9",
"main": "./lib/zentabs",
"description": "Keep the opened tabs amount below specified limit",
"license": "MIT",
"repository": "https://github.com/ArnaudRinquin/atom-zentabs",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"underscore-plus": "1.x",
"atom-space-pen-views": "^2.0.3"
},
"configSchema": {
"maximumOpenedTabs": {
"type": "integer",
"default": 5,
"minimum": 1,
"description": "The maximum number of tabs before we start removing old ones"
},
"manualMode": {
"type": "boolean",
"default": false,
"description": "If enabled, you will need to use a shortcut in order to trigger a tab cleanup."
},
"showPinnedIcon": {
"type": "boolean",
"default": true
},
"neverCloseUnsaved": {
"type": "boolean",
"default": false,
"description": "If enabled, we will avoid trying to close unsaved files"
},
"neverCloseNew": {
"type": "boolean",
"default": false,
"description": "If enabled, we will avoid trying to close files that are not yet added to the project repo"
},
"neverCloseDirty": {
"type": "boolean",
"default": false,
"description": "If enabled, we will avoid trying to close files that have not been committed to your repo"
}
}
}