-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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": "psqlformat",
"version": "1.21.0",
"main": "dist/index.js",
"bin": {
"psqlformat": "dist/bin.js"
},
"description": "PostgreSQL SQL syntax beautifier",
"keywords": [
"sql",
"postgres",
"postgreSQL",
"formatting"
],
"author": "Brady Holt",
"license": "MIT",
"homepage": "/~https://github.com/bradymholt/psqlformat#readme",
"repository": {
"type": "git",
"url": "git+/~https://github.com/bradymholt/psqlformat.git"
},
"bugs": {
"url": "/~https://github.com/bradymholt/psqlformat/issues"
},
"files": [
"dist/",
"vendor/"
],
"types": "dist/index.d.ts",
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/globby": "^9.1.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.5",
"@types/yargs": "^15.0.7",
"chai": "^4.2.0",
"jsh": "^0.39.0",
"mocha": "^10.1.0",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"globby": "^11.0.1",
"yargs": "^16.0.3"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2
},
"scripts": {
"build": "tsc",
"test": "npx mocha --require ts-node/register/type-check --recursive ./test/*.ts",
"start": "ts-node src/bin.ts test/support/query.sql",
"format": "npx prettier --write ./**/*.ts",
"upgrade": "./scripts/upgrade-pgFormatter.js",
"version": "npm run build && git add -A dist"
}
}