moved node-statsd to optionalDependency
also prevents error from require node-statsd if it wasn't installed, but logs error if config says it should be enabled.
... | ... | @@ -20,7 +20,6 @@ |
"mustache": "0.3.1-dev", | ||
"jwcrypto": "0.3.2", | ||
"mysql": "0.9.5", | ||
"node-statsd": "https://github.com/downloads/lloyd/node-statsd/0509f85.tgz", | ||
"nodemailer": "0.1.24", | ||
"mkdirp": "0.3.0", | ||
"optimist": "0.2.8", | ||
... | ... | @@ -34,6 +33,9 @@ |
"validator": "0.4.9", | ||
"winston": "0.6.2" | ||
}, | ||
"optionalDependencies": { | ||
"node-statsd": "https://github.com/downloads/lloyd/node-statsd/0509f85.tgz" | ||
}, | ||
"devDependencies": { | ||
"vows": "0.5.13", | ||
"awsbox": "0.2.12", | ||
... | ... |
Please register or sign in to comment