-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 922 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 922 Bytes
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
{
"name": "git-tabs",
"main": "./lib/git-tabs",
"version": "0.4.1",
"description": "git-tabs stores the currently open text editors by branch and reopens closed files upon switching branches.",
"keywords": [
"git-tabs",
"github",
"git",
"tab",
"remember",
"branches",
"tab manager"
],
"repository": "https://github.com/dbslone/git-tabs",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"configSchema": {
"useConfirmNotification": {
"type": "boolean",
"default": false,
"description": "Use a confirm notification when switching project/branch"
}
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint"
},
"dependencies": {
"md5": "^2.2.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0"
}
}