-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
{
"name": "querio",
"version": "0.2.0",
"description": "Condition-based query parser, optimal for building database queries.",
"author": "tecc",
"repository": "https://github.com/tecc/querio.git",
"homepage": "https://github.com/tecc/querio",
"bugs": {
"url": "https://github.com/tecc/querio/issues"
},
"keywords": [
"query",
"filter"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"license": "MIT",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "run-s clean build",
"clean": "rimraf dist",
"build": "tsup src/index.ts --format esm,cjs --dts",
"lint": "eslint src/*.ts",
"format": "prettier -w src/*.ts",
"test": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@jest/globals": "^29.6.2",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"jest": "^29.6.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
}
}