mirror of
https://github.com/atom/atom.git
synced 2026-01-15 01:48:15 -05:00
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"name": "git-diff",
|
|
"version": "1.3.9",
|
|
"main": "./lib/main",
|
|
"description": "Marks lines in the editor gutter that have been added, edited, or deleted since the last commit.",
|
|
"repository": "https://github.com/atom/atom",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"atom": "*"
|
|
},
|
|
"dependencies": {
|
|
"atom-select-list": "^0.7.0",
|
|
"fs-plus": "^3.0.0",
|
|
"temp": "~0.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"standard": "^11.0.0"
|
|
},
|
|
"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 (`|`)."
|
|
},
|
|
"wrapAroundOnMoveToDiff": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Wraps around to the first/last diff in the file when moving to next/previous diff."
|
|
}
|
|
}
|
|
}
|