CyTube/package.json
calzoneman 04dbb3444b Fix a few memory leaks; add /gc console command
3 memory leaks were fixed
  - ipThrottle (due to the periodic cleaner clearing the wrong object...)
  - ipCount (shouldn't have leaked very much, but removing obsolete data is good practice)
  - lastguestlogin (again, shouldn't leak much, but should be cleared periodically anyways)
A new console command (i.e. from the terminal running node) was added: /gc
  - If the process is invoked as node --expose-gc index.js, /gc allows you to manually invoke the garbage collector
2014-04-10 21:54:46 -05:00

22 lines
480 B
JSON

{
"author": "Calvin Montgomery",
"name": "CyTube",
"description": "Online media synchronizer and chat",
"version": "3.0.3",
"repository": {
"url": "http://github.com/calzoneman/sync"
},
"dependencies": {
"express": "~3.4.8",
"bcrypt": "~0.7.7",
"mysql": "~2.0.1",
"jade": "~1.1.5",
"socket.io": "~0.9.16",
"nodemailer": "~0.6.0",
"cookie": "~0.1.0",
"yamljs": "~0.1.4",
"express-minify": "0.0.7",
"oauth": "^0.9.11"
}
}