package.json 1016 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "append-buffer",
  3. "description": "Append a buffer to another buffer ensuring to preserve line ending characters.",
  4. "version": "1.0.2",
  5. "homepage": "https://github.com/doowb/append-buffer",
  6. "author": "Brian Woodward (https://doowb.com)",
  7. "repository": "doowb/append-buffer",
  8. "bugs": {
  9. "url": "https://github.com/doowb/append-buffer/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "keywords": [
  23. "append",
  24. "append-buffer",
  25. "concat",
  26. "concat-buffer",
  27. "eol",
  28. "join",
  29. "join-buffer",
  30. "normalize",
  31. "buffer"
  32. ],
  33. "devDependencies": {
  34. "gulp-format-md": "^1.0.0",
  35. "mocha": "^3.5.0"
  36. },
  37. "dependencies": {
  38. "buffer-equal": "^1.0.0"
  39. },
  40. "verb": {
  41. "toc": false,
  42. "layout": "default",
  43. "tasks": [
  44. "readme"
  45. ],
  46. "plugins": [
  47. "gulp-format-md"
  48. ],
  49. "lint": {
  50. "reflinks": true
  51. }
  52. }
  53. }