package.json 617 B

123456789101112131415161718192021222324
  1. {
  2. "name": "to-buffer",
  3. "version": "1.1.1",
  4. "description": "Pass in a string, get a buffer back. Pass in a buffer, get the same buffer back",
  5. "main": "index.js",
  6. "dependencies": {},
  7. "devDependencies": {
  8. "standard": "^6.0.5",
  9. "tape": "^4.4.0"
  10. },
  11. "scripts": {
  12. "test": "standard && tape test.js"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/mafintosh/to-buffer.git"
  17. },
  18. "author": "Mathias Buus (@mafintosh)",
  19. "license": "MIT",
  20. "bugs": {
  21. "url": "https://github.com/mafintosh/to-buffer/issues"
  22. },
  23. "homepage": "https://github.com/mafintosh/to-buffer"
  24. }