-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.71 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.71 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
66
67
68
69
70
71
72
{
"name": "queriable",
"version": "1.0.2",
"description": "Type-safe SQL query builder for TypeScript with MySQL, PostgreSQL, and SQLite connectors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!dist/tsconfig.tsbuildinfo"
],
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alaca/queriable.git"
},
"keywords": [
"sql",
"query",
"builder",
"querybuilder",
"database",
"mysql",
"postgres",
"sqlite",
"typescript",
"type-safe",
"orm"
],
"author": {
"name": "Ante Laca",
"web": "https://github.com/alaca"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/alaca/queriable/issues"
},
"homepage": "https://github.com/alaca/queriable#readme",
"peerDependencies": {
"better-sqlite3": "^9.0.0 || ^10.0.0 || ^11.0.0",
"mysql2": "^3.0.0",
"pg": "^8.0.0"
},
"peerDependenciesMeta": {
"mysql2": {
"optional": true
},
"pg": {
"optional": true
},
"better-sqlite3": {
"optional": true
}
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/jest": "^29.5.10",
"@types/node": "^18.19.0",
"@types/pg": "^8.10.9",
"better-sqlite3": "^11.0.0",
"jest": "^29.7.0",
"mysql2": "^3.20.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"jest": {
"preset": "ts-jest"
}
}