-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.14 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
{
"description": "Safely create & execute parameterized SQL queries using template strings 🔧✨ minimal API and works with any db driver (pg, mysql, sqlite, etc).",
"author": {
"name": "Alex Brombal",
"email": "[email protected]",
"url": "https://brombal.com"
},
"repository": {
"type": "git",
"url": "git://github.com/brombal/sql-tags.git"
},
"license": "MIT",
"engines": {
"node": ">=16.5"
},
"scripts": {
"clean": "rm -rf ./.parcel-cache ./core/dist ./drivers/*/dist",
"build": "npm run clean && npm run build --workspaces",
"test": "node --expose-gc ./node_modules/.bin/jest --coverage --detectOpenHandles",
"publish-all": "npm publish --workspaces"
},
"workspaces": [
"./core",
"./drivers/mysql",
"./drivers/postgres",
"./drivers/sqlite"
],
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@parcel/packager-ts": "^2.11.0",
"@parcel/transformer-typescript-types": "^2.11.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.8",
"jest": "^29.7.0",
"parcel": "^2.11.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}