forked from groupdock/mongoose-nested-set
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 937 Bytes
/
package.json
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
33
34
35
36
37
38
{
"author": "Luc Castera <[email protected]> (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.5",
"repository": {
"type": "git",
"url": "git://github.com/janez89/mongoose-nested-set.git"
},
"main": "index.js",
"scripts": {
"test": "./node_modules/nodeunit/bin/nodeunit tests/nested_set_test.js"
},
"engines": {
"node": "> 0.6.x"
},
"dependencies": {
"mongoose": "~3.6.9",
"async": "~0.2.8"
},
"devDependencies": {
"nodeunit": "~0.7.4"
},
"contributors": [
{
"name": "Janos Meszaros",
"url": "https://github.com/janez89/"
}
]
}