-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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": "ts-rsql-query",
"version": "1.3.4",
"description": "Transforms the AST from ts-rsql into a SQL query",
"main": "./dist/index.js",
"scripts": {
"build": "npx tsc",
"lint": "npx eslint . --max-warnings 0 --ext ts",
"test": "npm run build && npx jest",
"test:coverage": "npm run build && npx jest --verbose --detectOpenHandles --expand --coverage",
"it": "npx jest -i -c jest.config-it.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/massfords/ts-rsql-query.git"
},
"keywords": [
"rsql"
],
"author": "Mark Ford",
"contributors": [
{
"name": "Jens Krefeldt"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/massfords/ts-rsql-query/issues"
},
"homepage": "https://github.com/massfords/ts-rsql-query#readme",
"devDependencies": {
"@types/common-tags": "^1.8.4",
"@types/jest": "^29.5.14",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"pg-promise": "^11.10.1",
"prettier": "^3.3.3",
"testcontainers": "^9.1.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"uuid": "^11.0.0"
},
"dependencies": {
"date-fns": "^4.1.0",
"js-base64": "^3.7.7",
"tiny-invariant": "^1.3.3",
"ts-rsql": "^1.0.0"
}
}