-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "paginate",
"description": "Pagination. Especially useful with Mongoose + Express/Jade.",
"version": "0.2.0",
"homepage": "https://github.com/tonymilne/paginate",
"author": {
"name": "Tony Milne",
"url": "http://tonymilne.com.au"
},
"repository": {
"type": "git",
"url": "git://github.com/tonymilne/paginate.git"
},
"bugs": {
"url": "https://github.com/tonymilne/paginate/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/tonymilne/paginate/blob/master/LICENSE-MIT"
}
],
"main": "lib/paginate",
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/mocha/bin/mocha --bail"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.3",
"grunt-contrib-watch": "^0.6.1",
"grunt-simple-mocha": "^0.4.0",
"mocha": "^2.3.1",
"mongoose": "~3.2.1",
"should": "^7.1.0",
"step": "0.0.6"
},
"keywords": [],
"dependencies": {
"jade": "^1.11.0",
"lodash": "^3.10.1"
}
}