This repository was archived by the owner on Jan 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·51 lines (51 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·51 lines (51 loc) · 1.41 KB
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
{
"name": "git-diff-overview",
"version": "0.1.4",
"main": "./lib/main",
"description": "Marks lines in the editor gutter that have been added, edited, or deleted since the last commit. Also show an overview of changes in the scrollbar.",
"repository": "https://github.com/guidezpl/git-diff-overview",
"license": "MIT",
"engines": {
"atom": "*"
},
"dependencies": {
"atom-select-list": "^0.7.2",
"fs-plus": "^3.1.1",
"temp": "~0.9.1"
},
"devDependencies": {
"standard": "^14.3.3"
},
"standard": {
"ignore": [
"spec/fixtures/working-dir/sample.js"
],
"env": {
"atomtest": true,
"browser": true,
"jasmine": true,
"node": true
},
"globals": [
"atom",
"snapshotResult"
]
},
"configSchema": {
"showIconsInEditorGutter": {
"type": "boolean",
"default": false,
"description": "Show colored icons for added (`+`), modified (`·`) and removed (`-`) lines in the editor's gutter, instead of colored markers (`|`)."
},
"showMarkersInScrollBar": {
"type": "boolean",
"default": true,
"description": "Show colored markers (`|`) in the scroll bar, to see all git diffs in a file at a glance."
},
"wrapAroundOnMoveToDiff": {
"type": "boolean",
"default": true,
"description": "Wraps around to the first/last diff in the file when moving to next/previous diff."
}
}
}