forked from TRUEPIC/queryql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
{
"name": "ready-queryql",
"version": "0.8.0",
"description": "Easily add filtering, sorting, and pagination to your REST API through your old friend: the query string!",
"keywords": [
"filter",
"filtering",
"sort",
"sorting",
"page",
"pagination",
"rest",
"api",
"query",
"querystring",
"qs",
"knex",
"orm"
],
"homepage": "https://github.com/TRUEPIC/queryql#readme",
"bugs": "https://github.com/TRUEPIC/queryql/issues",
"license": "MIT",
"main": "src/index.js",
"repository": "TRUEPIC/queryql",
"scripts": {
"lint": "run-p lint:*",
"lint:format": "prettier --check .",
"lint:format:fix": "prettier --write .",
"lint:quality": "eslint .",
"lint:quality:fix": "eslint --fix .",
"release": "release-it",
"test": "jest"
},
"dependencies": {
"@hapi/joi": "^16.1.8",
"is": "^3.3.0"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"knex": "^0.21.12",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1",
"release-it": "^14.2.2"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public"
}
}