Skip to content
This repository was archived by the owner on Jul 29, 2022. It is now read-only.

Commit 329ad7c

Browse files
committed
Moved underscore from deps to devDeps as it was unused
Fixes louischatriot#7
1 parent e143134 commit 329ad7c

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

lib/avltree.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
var BinarySearchTree = require('./bst')
55
, customUtils = require('./customUtils')
66
, util = require('util')
7-
, _ = require('underscore')
87
;
98

109

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,15 @@
1717
"type": "git",
1818
"url": "[email protected]:louischatriot/node-binary-search-tree.git"
1919
},
20-
"dependencies": {
21-
"underscore": "~1.4.4"
22-
},
20+
"dependencies": {},
2321
"devDependencies": {
2422
"chai": "1.0.x",
25-
"mocha": "1.4.x"
23+
"mocha": "1.4.x",
24+
"underscore": "~1.4.4"
2625
},
2726
"scripts": {
2827
"test": "make test"
2928
},
3029
"main": "index",
31-
"licence": "MIT"
30+
"license": "MIT"
3231
}

0 commit comments

Comments
 (0)