package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "remove-bom-buffer",
  3. "description": "Remove a byte order mark (BOM) from a buffer.",
  4. "version": "3.0.0",
  5. "homepage": "https://github.com/jonschlinkert/remove-bom-buffer",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Blaine Bublitz (https://twitter.com/BlaineBublitz)",
  9. "Erik Kemperman (https://github.com/erikkemperman)",
  10. "Jon Schlinkert (http://twitter.com/jonschlinkert)"
  11. ],
  12. "repository": "jonschlinkert/remove-bom-buffer",
  13. "bugs": {
  14. "url": "https://github.com/jonschlinkert/remove-bom-buffer/issues"
  15. },
  16. "license": "MIT",
  17. "files": [
  18. "index.js"
  19. ],
  20. "main": "index.js",
  21. "engines": {
  22. "node": ">=0.10.0"
  23. },
  24. "scripts": {
  25. "test": "mocha"
  26. },
  27. "dependencies": {
  28. "is-buffer": "^1.1.5",
  29. "is-utf8": "^0.2.1"
  30. },
  31. "devDependencies": {
  32. "gulp-format-md": "^0.1.11",
  33. "mocha": "^3.2.0"
  34. },
  35. "keywords": [
  36. "bom",
  37. "buffer",
  38. "byte-order-mark",
  39. "normalize",
  40. "remove",
  41. "strip",
  42. "strip-bom",
  43. "strip-bom-buffer",
  44. "strip-bom-string"
  45. ],
  46. "verb": {
  47. "related": {
  48. "list": [
  49. "cr",
  50. "has-bom",
  51. "read-file",
  52. "strip-bom-string"
  53. ]
  54. },
  55. "toc": false,
  56. "layout": "default",
  57. "tasks": [
  58. "readme"
  59. ],
  60. "plugins": [
  61. "gulp-format-md"
  62. ],
  63. "lint": {
  64. "reflinks": true
  65. }
  66. }
  67. }