package.json 645 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "detect-newline",
  3. "version": "2.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": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "newline",
  23. "linebreak",
  24. "line-break",
  25. "line",
  26. "lf",
  27. "crlf",
  28. "eol",
  29. "linefeed",
  30. "character",
  31. "char"
  32. ],
  33. "devDependencies": {
  34. "ava": "*",
  35. "xo": "*"
  36. }
  37. }