-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "@truepic/queryql",
"version": "0.13.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": "npm run lint:format && npm run lint:quality",
"lint:format": "prettier --check .",
"lint:format:fix": "prettier --write .",
"lint:quality": "eslint .",
"lint:quality:fix": "eslint --fix .",
"release": "release-it --only-version",
"test": "jest"
},
"dependencies": {
"is": "^3.3.0",
"joi": "^17.12.3"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-n": "^17.0.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"knex": "^3.1.0",
"prettier": "3.2.5",
"release-it": "^17.1.1"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}