-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 901 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 901 Bytes
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
{
"name": "sequelizeqp",
"version": "1.1.1",
"description": "Small library to convert express query params (or objects in general) into a syntax recognised by the Sequelize library.",
"main": "index.js",
"scripts": {
"test": "cd tests && mocha"
},
"keywords": [
"pagination",
"parser",
"sorting",
"query",
"express",
"sequelize",
"query-builder",
"query-parser"
],
"author": "Stuart Harrison",
"license": "GNU GPLv3",
"devDependencies": {
"mocha": "^10.0.0",
"sqlite3": "^5.0.8"
},
"dependencies": {
"sequelize": "^6.21.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stuartaharrison/sequelize-query-parser.git"
},
"bugs": {
"url": "https://github.com/stuartaharrison/sequelize-query-parser/issues"
},
"homepage": "https://github.com/stuartaharrison/sequelize-query-parser#readme"
}