package.json
1 { 2 "name": "git-diff", 3 "version": "1.3.9", 4 "main": "./lib/main", 5 "description": "Marks lines in the editor gutter that have been added, edited, or deleted since the last commit.", 6 "repository": "https://github.com/atom/atom", 7 "license": "MIT", 8 "engines": { 9 "atom": "*" 10 }, 11 "dependencies": { 12 "atom-select-list": "^0.7.0", 13 "fs-plus": "^3.0.0", 14 "temp": "~0.8.1" 15 }, 16 "devDependencies": { 17 "standard": "^11.0.0" 18 }, 19 "standard": { 20 "ignore": [ 21 "spec/fixtures/working-dir/sample.js" 22 ], 23 "env": { 24 "atomtest": true, 25 "browser": true, 26 "jasmine": true, 27 "node": true 28 }, 29 "globals": [ 30 "atom", 31 "snapshotResult" 32 ] 33 }, 34 "configSchema": { 35 "showIconsInEditorGutter": { 36 "type": "boolean", 37 "default": false, 38 "description": "Show colored icons for added (`+`), modified (`ยท`) and removed (`-`) lines in the editor's gutter, instead of colored markers (`|`)." 39 }, 40 "wrapAroundOnMoveToDiff": { 41 "type": "boolean", 42 "default": true, 43 "description": "Wraps around to the first/last diff in the file when moving to next/previous diff." 44 } 45 } 46 }