-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "express-paginate",
"version": "1.0.2",
"description": "Node.js pagination middleware and view helpers",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/expressjs/express-paginate.git"
},
"author": "Nick Baugh <[email protected]>",
"contributors": [
{
"name": "Esco Obong",
"email": "[email protected]"
},
{
"name": "Matheus Marchini",
"email": "[email protected]"
},
{
"name": "Carlo Bernaschina"
}
],
"bugs": {
"url": "https://github.com/expressjs/express-paginate/issues"
},
"license": "MIT",
"homepage": "https://github.com/expressjs/express-paginate",
"dependencies": {
"lodash.assign": "^4.2.0",
"lodash.clone": "^4.5.0",
"lodash.isobject": "^3.0.2",
"qs": "^6.5.1"
},
"devDependencies": {
"async": "^2.5.0",
"chai": "^4.1.0",
"istanbul": "^0.4.5",
"mocha": "^5.1.1",
"reqres": "^2.1.0"
},
"scripts": {
"test": "node_modules/.bin/mocha --reporter spec --bail --check-leaks --require test/support/should test/",
"test-cov": "istanbul cover node_modules/.bin/mocha -- --reporter dot --check-leaks --require test/support/should test/",
"test-travis": "istanbul cover node_modules/.bin/mocha --report lcovonly -- --reporter spec --check-leaks --require test/support/should test/"
}
}