package.json 678 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "n-readlines",
  3. "version": "1.0.1",
  4. "description": "Read file line by line without buffering the whole file in memory.",
  5. "main": "./readlines.js",
  6. "dependencies": {},
  7. "repository": {
  8. "type": "git",
  9. "url": "http://github.com/nacholibre/node-readlines.git"
  10. },
  11. "keywords": [
  12. "read",
  13. "line",
  14. "reader",
  15. "linereader",
  16. "readfile",
  17. "linebyline",
  18. "synchronous",
  19. "sync",
  20. "readline",
  21. "readlines"
  22. ],
  23. "engines": {
  24. "node": ">=6.x.x"
  25. },
  26. "devDependencies": {
  27. "tape": "^4.9.0"
  28. },
  29. "scripts": {
  30. "test": "tape test/*.test.js"
  31. },
  32. "author": "Yoan Arnaudov <jonidev@gmail.com>",
  33. "license": "MIT"
  34. }