-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.16 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "mongoose-list",
"version": "0.2.2",
"description": "List plugin for mongoose that allows pagination, filtering, and sorting.",
"homepage": "https://github.com/snailjs/mongoose-list",
"bugs": "https://github.com/snailjs/mongoose-list/issues",
"authors": [
{
"name": "Bryan Tong",
"email": "[email protected]",
"homepage": "https://github.com/nullivex"
},
{
"name": "Tony Butler",
"email": "[email protected]",
"homepage": "https://github.com/spudz76"
}
],
"repository": {
"type": "git",
"url": "https://github.com/snailjs/mongoose-list.git"
},
"keywords": [
"mongoose",
"plugin",
"list",
"paging",
"pagination",
"sort",
"search"
],
"engines": {
"node": ">=0.8.0"
},
"dependencies": {},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.7.1",
"grunt-contrib-watch": "~0.5.3",
"grunt-mocha-test": "~0.8.1",
"grunt-project-update": "~0.2.2",
"mocha": "~1.15.1",
"chai": "~1.8.1",
"jshint-stylish": "~0.1.3",
"mongoose": "~3.8.2",
"async": "~0.2.9"
},
"scripts": {
"test": "grunt test"
}
}