package.json 545 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "stream-spec",
  3. "version": "0.3.6",
  4. "description": "executable specification for Stream (to make testing streams easy)",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "node test/writable.js; node test/readable.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/dominictarr/stream-spec.git"
  12. },
  13. "keywords": [
  14. "stream",
  15. "spec",
  16. "specification",
  17. "streams",
  18. "test"
  19. ],
  20. "dependencies": {
  21. "macgyver": "~1.10"
  22. },
  23. "author": "Dominic Tarr",
  24. "license": "(MIT OR Apache-2.0)"
  25. }