-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.48 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.48 KB
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
59
60
61
62
63
64
65
{
"name": "@truepic/queryql",
"version": "0.21.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": {
"type": "git",
"url": "git+https://github.com/TRUEPIC/queryql.git"
},
"files": [
"src",
"!src/**/*.test.js",
"DOCS.md"
],
"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.2",
"joi": "^18.0.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-n": "^17.23.1",
"globals": "^17.0.0",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"knex": "^3.1.0",
"prettier": "3.7.4",
"release-it": "^19.2.3"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}