-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.44 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.44 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
{
"name": "fluent-sql",
"version": "3.0.6",
"description": "Fluent SQL lib",
"main": "dist/fluent-sql.js",
"directories": {
"test": "test"
},
"bin": {
"fluent-sql-gen": "dist/generate.js"
},
"peerDependencies": {
"simple-db-migrate": "^0.12.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"better-sqlite3": "^11.5.0",
"flatted": "^3.3.3",
"pg": "^8.16.0",
"pre-commit": "^1.0.10",
"shx": "^0.4.0",
"typescript": "^5.8.3",
"@swc/core": "^1.3.102",
"@swc/cli": "^0.1.62",
"vitest": "^1.3.0",
"vite-tsconfig-paths": "^4.3.2"
},
"scripts": {
"do-publish": "npm publish --registry=https://registry.npmjs.org",
"build-old": "babel src --out-dir dist",
"prebuild": "shx rm -rf dist/*",
"build": "swc src -d dist --copy-files",
"test": "vitest --watch",
"test:once": "vitest run",
"coverage": "vitest run --coverage",
"predo-publish": "npm run build"
},
"precommit": [
"test:once",
"prebuild"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jefflindholm/fluent-sql.git"
},
"keywords": [
"sql",
"database",
"fluent-api",
"fluent",
"typescript"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jefflindholm/fluent-sql/issues"
},
"homepage": "https://github.com/jefflindholm/fluent-sql#readme",
"engines": {
"node": ">=10.0"
},
"engineStrict": true
}