package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "strip-bom-string",
  3. "description": "Strip a byte order mark (BOM) from a string.",
  4. "version": "1.0.0",
  5. "homepage": "https://github.com/jonschlinkert/strip-bom-string",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/strip-bom-string",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/strip-bom-string/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. "devDependencies": {
  23. "gulp-format-md": "^0.1.11",
  24. "mocha": "^3.2.0"
  25. },
  26. "keywords": [
  27. "bom",
  28. "byte",
  29. "byte-order-mark",
  30. "file",
  31. "fs",
  32. "mark",
  33. "nl",
  34. "normalize",
  35. "order",
  36. "string",
  37. "strip"
  38. ],
  39. "verb": {
  40. "related": {
  41. "list": [
  42. "cr",
  43. "has-bom",
  44. "read-file",
  45. "strip-bom-buffer"
  46. ]
  47. },
  48. "toc": false,
  49. "layout": "default",
  50. "tasks": [
  51. "readme"
  52. ],
  53. "plugins": [
  54. "gulp-format-md"
  55. ],
  56. "lint": {
  57. "reflinks": true
  58. }
  59. }
  60. }