-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.54 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
{
"name": "pg-formatter-ts",
"version": "0.1.5",
"description": "Format PostgreSQL SQL with ease using this TypeScript library, which provides a convenient API wrapping the pgFormatter CLI tool.",
"main": "dist/lib/pgFormatter.js",
"types": "dist/lib/pgFormatter.d.ts",
"repository": "[email protected]:nightvisi0n/pg-formatter-ts.git",
"keywords": [
"typescript",
"sql",
"postgresql",
"pgformatter",
"sql-formatting",
"code-formatting",
"cli-wrapper",
"database-tools",
"open-source",
"query-optimization"
],
"author": "Julian Neureuther <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc && copyfiles \"assets/pg-formatter/**/*\" dist",
"release": "release-it",
"format": "prettier --write .",
"test": "jest",
"eslint": "eslint './src/**/*.{js,ts}'"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"release-it": "^15.10.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}