-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "objection-cursor",
"version": "1.2.6",
"description": "Cursor based pagination plugin for Objection.js",
"main": "index.js",
"scripts": {
"test": "mocha --require @babel/register",
"test:sqlite": "CLIENT=sqlite3 mocha --require @babel/register",
"test:pg": "CLIENT=pg mocha --require @babel/register",
"test:tav": "tav",
"lint": "eslint --fix \"index.js\" \"lib/**/*.js\" \"test/**/*.js\"",
"release": "standard-version",
"release:alpha": "standard-version --prerelease alpha"
},
"engines": {
"node": ">=6.0.0"
},
"homepage": "https://github.com/olavim/objection-cursor#readme",
"repository": "https://github.com/olavim/objection-cursor",
"bugs": {
"url": "https://github.com/olavim/objection-cursor/issues"
},
"author": "Olavi Mustanoja <tilastokeskus@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.19.1",
"eslint-plugin-mocha": "^5.0.0",
"knex": "^2",
"mocha": "^5.2.0",
"mysql": "^2.17.1",
"objection": "^3",
"pg": "^8.7.3",
"sqlite3": "^5.0.0",
"test-all-versions": "^4.1.1"
},
"dependencies": {
"base64url": "^3.0.0",
"lodash": "^4.17.10",
"moment": "^2.24.0"
},
"peerDependencies": {
"objection": ">=0.9.1"
},
"keywords": [
"objection",
"plugin",
"sql",
"mysql",
"sqlite3",
"cursor",
"pagination"
]
}