package.json
1 { 2 "name": "line-ending-selector", 3 "version": "0.7.7", 4 "main": "./lib/main", 5 "description": "Select the line ending to use for the current editor.", 6 "license": "MIT", 7 "repository": "https://github.com/atom/atom", 8 "engines": { 9 "atom": "^1.0.0" 10 }, 11 "dependencies": { 12 "atom-select-list": "^0.7.0", 13 "underscore-plus": "^1.7.0" 14 }, 15 "consumedServices": { 16 "status-bar": { 17 "versions": { 18 "^1.0.0": "consumeStatusBar" 19 } 20 } 21 }, 22 "devDependencies": { 23 "standard": "^5.1.0" 24 }, 25 "configSchema": { 26 "defaultLineEnding": { 27 "title": "Default line ending", 28 "description": "Line ending to use for new files", 29 "type": "string", 30 "default": "OS Default", 31 "enum": [ 32 "OS Default", 33 "LF", 34 "CRLF" 35 ] 36 } 37 }, 38 "standard": { 39 "globals": [ 40 "advanceClock", 41 "atom", 42 "beforeEach", 43 "expect", 44 "describe", 45 "it", 46 "jasmine", 47 "MouseEvent", 48 "runs", 49 "spyOn", 50 "waits", 51 "waitsFor", 52 "waitsForPromise" 53 ] 54 } 55 }