Add npm as a dev dependency.

Former-commit-id: c72a6e13774bce378dd2ab5982f51ba37c6a7bc0
This commit is contained in:
Kit Cambridge
2012-10-17 22:31:13 -07:00
parent da7fb44e5d
commit 0aa158824f
2 changed files with 4 additions and 0 deletions

View File

@@ -61,6 +61,7 @@
npm.load({ npm.load({
'global': true 'global': true
}, function(exception) { }, function(exception) {
console.log(path.resolve(basePath, '..'), npm.root);
if (exception) { if (exception) {
process.stderr.write('There was a problem loading the npm registry.'); process.stderr.write('There was a problem loading the npm registry.');
process.exit(1); process.exit(1);

View File

@@ -27,6 +27,9 @@
"dependencies": { "dependencies": {
"tar": "~0.1.13" "tar": "~0.1.13"
}, },
"devDependencies": {
"npm": "~1.1.63"
},
"bugs": { "bugs": {
"url": "https://github.com/bestiejs/lodash/issues" "url": "https://github.com/bestiejs/lodash/issues"
}, },