package.json
1 { 2 "name": "detect-newline", 3 "version": "3.1.0", 4 "description": "Detect the dominant newline character of a string", 5 "license": "MIT", 6 "repository": "sindresorhus/detect-newline", 7 "author": { 8 "name": "Sindre Sorhus", 9 "email": "sindresorhus@gmail.com", 10 "url": "sindresorhus.com" 11 }, 12 "engines": { 13 "node": ">=8" 14 }, 15 "scripts": { 16 "test": "xo && ava && tsd" 17 }, 18 "files": [ 19 "index.js", 20 "index.d.ts" 21 ], 22 "keywords": [ 23 "newline", 24 "linebreak", 25 "line-break", 26 "line", 27 "lf", 28 "crlf", 29 "eol", 30 "linefeed", 31 "character", 32 "char" 33 ], 34 "devDependencies": { 35 "ava": "^1.4.1", 36 "tsd": "^0.7.2", 37 "xo": "^0.24.0" 38 } 39 }