forked from Kaltsoon/sequelize-cursor-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"scripts": {
"test": "jest",
"check": "tsc",
"lint": "eslint src",
"build": "rm -rf build && tsc --project tsconfig.build.json"
},
"name": "sequelize-cursor-pagination",
"description": "Cursor-based pagination queries for Sequelize models",
"version": "3.4.0",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Kaltsoon/sequelize-cursor-pagination.git"
},
"keywords": [
"sequelize",
"pagination",
"cursor-based pagination"
],
"author": "Kaltsoon",
"bugs": {
"url": "https://github.com/Kaltsoon/sequelize-cursor-pagination/issues"
},
"peerDependencies": {
"sequelize": ">= 6.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"sequelize": "^6.21.4",
"sqlite3": "^5.0.8",
"typescript": "^4.7.2"
}
}