package.json 522 B

12345678910111213141516
  1. {
  2. "name": "sesh",
  3. "description": "super simple session middleware for node.js, even has optional 'magic' sessions which monkey patch the httpServer with one line!",
  4. "version": "0.1.0",
  5. "author": "Marak Squires <marak.squires@gmail.com>",
  6. "repository": {
  7. "type": "git",
  8. "url": "http://github.com/marak/session.js.git"
  9. },
  10. "keywords": ["sessions", "cookies", "middleware", "session"],
  11. "dependencies": {
  12. "response": ">= 0.1.0"
  13. },
  14. "main": "./lib/core",
  15. "engines": { "node": ">= 0.2.0" }
  16. }