package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "simple-concat",
  3. "description": "Super-minimalist version of `concat-stream`. Less than 15 lines!",
  4. "version": "1.0.1",
  5. "author": {
  6. "name": "Feross Aboukhadijeh",
  7. "email": "feross@feross.org",
  8. "url": "https://feross.org"
  9. },
  10. "bugs": {
  11. "url": "https://github.com/feross/simple-concat/issues"
  12. },
  13. "dependencies": {},
  14. "devDependencies": {
  15. "standard": "*",
  16. "tape": "^5.0.1"
  17. },
  18. "homepage": "https://github.com/feross/simple-concat",
  19. "keywords": [
  20. "concat",
  21. "concat-stream",
  22. "concat stream"
  23. ],
  24. "license": "MIT",
  25. "main": "index.js",
  26. "repository": {
  27. "type": "git",
  28. "url": "git://github.com/feross/simple-concat.git"
  29. },
  30. "scripts": {
  31. "test": "standard && tape test/*.js"
  32. },
  33. "funding": [
  34. {
  35. "type": "github",
  36. "url": "https://github.com/sponsors/feross"
  37. },
  38. {
  39. "type": "patreon",
  40. "url": "https://www.patreon.com/feross"
  41. },
  42. {
  43. "type": "consulting",
  44. "url": "https://feross.org/support"
  45. }
  46. ]
  47. }