forked from SequelizeSearchBuilder/sequelize-search-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.26 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": "sequelize-search-builder-custom",
"description": "Minimalist library for parsing search request to sequelize query",
"version": "0.9.4",
"author": "Sergey Mukhin (segemun) <[email protected]> and Artyom Pokatilov (PokatilovArt) <[email protected]>",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PokatilovArt/sequelize-search-builder.git"
},
"keywords": [
"sequelize-search-builder",
"search-builder",
"query-builder",
"http",
"sequelize",
"express",
"web",
"rest",
"restful",
"api",
"search",
"query",
"http-query",
"query-string",
"query-parse",
"parse",
"convert",
"request",
"request-convert"
],
"files": [
"LICENSE",
"Readme.md",
"index.js",
"src/",
"config/"
],
"dependencies": {
"lodash.merge": "^4.6.2",
"qs": "^6.9.0",
"rc": "^1.2.8",
"sequelize": "^5.19.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.0",
"lodash.isequal": "^4.5.0",
"mocha": "^5.2.0"
},
"scripts": {
"test": "mocha --exit"
}
}