package.json 816 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "add-stream",
  3. "version": "1.0.0",
  4. "description": "Append the contents of one stream onto another.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha",
  8. "cover": "istanbul cover node_modules/.bin/_mocha -- -u exports -R spec"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/wilsonjackson/add-stream"
  13. },
  14. "keywords": [
  15. "stream",
  16. "append",
  17. "add",
  18. "concat",
  19. "gulpfriendly"
  20. ],
  21. "author": "Majid Burney <moocow@euphoricsoup.com>",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/wilsonjackson/add-stream/issues"
  25. },
  26. "homepage": "https://github.com/wilsonjackson/add-stream",
  27. "dependencies": {},
  28. "devDependencies": {
  29. "chai": "^1.10.0",
  30. "event-stream": "^3.1.7",
  31. "istanbul": "^0.3.4",
  32. "mocha": "^2.0.1"
  33. }
  34. }