-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 822 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"author": "Luc Castera <luc.castera@gmail.com> (https://github.com/dambalah)",
"name": "mongoose-nested-set",
"description": "A mongoose plugin implementing the nested set pattern (aka as trees or hierarchies) for mongoose models",
"homepage": "https://github.com/groupdock/mongoose-nested-set",
"keywords": [
"mongoose",
"mongodb",
"nested set",
"nested-set",
"nested set pattern"
],
"version": "0.0.7",
"repository": {
"type": "git",
"url": "git://github.com/groupdock/mongoose-nested-set.git"
},
"main": "index.js",
"scripts": {
"test": "./node_modules/nodeunit/bin/nodeunit tests/*.js"
},
"engines": {
"node": "> 0.7.x"
},
"dependencies": {
"mongoose": "~2.5.14",
"async": "~0.1.22"
},
"devDependencies": {
"nodeunit": "~0.7.4"
}
}