File tree Expand file tree Collapse file tree 3 files changed +31
-9
lines changed Expand file tree Collapse file tree 3 files changed +31
-9
lines changed Original file line number Diff line number Diff line change
1
+ # ignore the testing folder
2
+ /tests
3
+
4
+ # ignore the readme
5
+ readme.md
Original file line number Diff line number Diff line change @@ -61,13 +61,13 @@ You can also configure your options to sort the results of your query by 1 or mo
61
61
62
62
```
63
63
npm i --save sequelize
64
- // TODO: add the npm link here
64
+ npm i --save sequelizeqp
65
65
```
66
66
67
67
## How to Use
68
68
69
69
``` javascript
70
- const SequelizeQS = require (' ' ); // TODO: add the npm bit here
70
+ const SequelizeQS = require (' sequelizeqp ' );
71
71
const sequelizeParser = SequelizeQS ();
72
72
```
73
73
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " sequelize-query-string " ,
3
- "version" : " 1.0.0 " ,
4
- "description" : " " ,
2
+ "name" : " sequelizeqp " ,
3
+ "version" : " 1.0.1 " ,
4
+ "description" : " Small library to convert express query params (or objects in general) into a syntax recognised by the Sequelize library. " ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
7
7
"test" : " cd tests && mocha"
8
8
},
9
- "keywords" : [],
10
- "author" : " " ,
11
- "license" : " ISC" ,
9
+ "keywords" : [
10
+ " pagination" ,
11
+ " parser" ,
12
+ " sorting" ,
13
+ " query" ,
14
+ " express" ,
15
+ " sequelize" ,
16
+ " query-builder" ,
17
+ " query-parser"
18
+ ],
19
+ "author" : " Stuart Harrison" ,
20
+ "license" : " GNU GPLv3" ,
12
21
"devDependencies" : {
13
22
"mocha" : " ^10.0.0" ,
14
23
"sqlite3" : " ^5.0.8"
15
24
},
16
25
"dependencies" : {
17
26
"sequelize" : " ^6.21.2"
18
- }
27
+ },
28
+ "repository" : {
29
+ "type" : " git" ,
30
+ "url" : " git+https://github.com/stuartaharrison/sequelize-query-parser.git"
31
+ },
32
+ "bugs" : {
33
+ "url" : " https://github.com/stuartaharrison/sequelize-query-parser/issues"
34
+ },
35
+ "homepage" : " https://github.com/stuartaharrison/sequelize-query-parser#readme"
19
36
}
You can’t perform that action at this time.
0 commit comments