package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "memorystream",
  3. "description": "This is lightweight memory stream module for node.js.",
  4. "version": "0.3.1",
  5. "keywords": [
  6. "memory",
  7. "test",
  8. "stream",
  9. "tools",
  10. "streams",
  11. "buffer"
  12. ],
  13. "scripts": {
  14. "test": "grunt"
  15. },
  16. "devDependencies" : {
  17. "expect.js" : "~0.2.0",
  18. "mocha" : "~1.20.0",
  19. "grunt": "~0.4",
  20. "grunt-cli": "~0.1.13",
  21. "grunt-mocha-test" : "~0.12.2",
  22. "grunt-contrib-jshint" : "~0.10.0",
  23. "q": "~1.0.1"
  24. },
  25. "author": "Dmitry Nizovtsev (https://github.com/JSBizon)",
  26. "contributors": [
  27. { "name": "Dmitry Nizovtsev", "email": "dmitryp3@gmail.com" }
  28. ],
  29. "repository" : {
  30. "type" : "git",
  31. "url" : "https://github.com/JSBizon/node-memorystream.git"
  32. },
  33. "homepage": "https://github.com/JSBizon/node-memorystream",
  34. "engines": { "node": ">= 0.10.0" },
  35. "licenses": [ {
  36. "type": "MIT",
  37. "url" : "http://github.com/JSBizon/node-memorystream/raw/master/LICENSE"
  38. } ]
  39. }