-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.55 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
52
53
54
55
56
57
58
59
{
"name": "bookshelf-paginator",
"version": "1.1.2",
"description": "Allow paginate your models with ease",
"main": "lib/paginator.js",
"scripts": {
"lint": "jshint ./src --reporter=./node_modules/jshint-full-path/index.js",
"checkStyle": "jscs .",
"pretest": "npm run-script lint && npm run-script checkStyle",
"test": "istanbul cover ./node_modules/.bin/_mocha -- --timeout 20000 --recursive -R spec -r should test/**/*",
"posttest": "istanbul check-coverage && rm -rf coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/bixsolutions/bookshelf-paginator.git"
},
"keywords": [
"Bookshelf",
"Paginator",
"Pager"
],
"author": "Julian Reyes Escrigas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bixsolutions/bookshelf-paginator/issues"
},
"homepage": "https://github.com/bixsolutions/bookshelf-paginator",
"devDependencies": {
"chance": "^0.7.5",
"debug": "^2.2.0",
"istanbul": "^0.3.14",
"jscs": "^1.13.1",
"jshint": "^2.7.0",
"jshint-full-path": "^1.1.1",
"mocha": "^2.2.4",
"q-io": "^1.12.0",
"should": "^6.0.1",
"sqlite3": "^3.0.8"
},
"dependencies": {
"bluebird": "^2.9.8",
"bookshelf": "^0.7.9",
"bookshelf-model-loader": "^0.9.6",
"knex": "^0.8.5",
"lodash": "^3.8.0"
},
"jscsConfig": {
"preset": "airbnb",
"excludeFiles": [
"node_modules/**",
"coverage/**"
]
},
"optionalDependencies": {
"mariasql": "^0.1.23",
"mysql": "^2.6.2",
"pg": "^4.3.0"
}
}