-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.62 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
57
58
59
{
"name": "sqltyper",
"version": "1.3.2",
"description": "Typed SQL queries in PostgreSQL",
"main": "dist/src/index.js",
"repository": "https://github.com/akheron/sqltyper",
"author": "Petri Lehtinen <petri@digip.org>",
"license": "MIT",
"keywords": [
"database",
"postgres",
"postgresql",
"typescript"
],
"files": [
"dist"
],
"bin": {
"sqltyper": "dist/src/cli.js"
},
"scripts": {
"sql": "ts-node src/cli.ts --target postgres --module '../postgres' --prettify src/sql/",
"sql:check": "yarn run sql --check",
"sql:watch": "yarn run sql --watch",
"lint": "eslint --max-warnings 0 '**/*.ts' && prettier --check \"**/*.{json,md}\"",
"lint:fix": "eslint --fix '**/*.ts' && prettier --write '**/*.{json,md}'",
"build": "tsc -p tsconfig.dist.json",
"clean": "rm -rf dist/",
"prepublishOnly": "yarn clean && yarn build",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^20.3.1",
"@types/ramda": "^0.27.3",
"@types/wrap-ansi": "^3.0.0",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.6.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^27.2.0",
"jest-cli": "^27.2.0",
"prettier": "^3.0.1",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0"
},
"dependencies": {
"buffer-writer": "^2.0.0",
"camelcase": "^6.0.0",
"fp-ts": "^2.5.3",
"node-watch": "^0.7.1",
"packet-reader": "^1.0.0",
"ramda": "^0.29.0",
"typescript": ">=5.1.6",
"wrap-ansi": "^7.0.0",
"yargs": "^17.0.0"
}
}