forked from bradymholt/psqlformat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.27 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.27 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
{
"name": "psqlformat",
"version": "0.15.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.1.0",
"@types/globby": "^6.1.0",
"@types/mocha": "^2.2.46",
"@types/node": "^9.3.0",
"@types/yargs": "^10.0.1",
"chai": "^4.1.2",
"mocha": "^4.1.0",
"npm-github-release": "^0.9.0",
"ts-node": "^4.1.0",
"typescript": "^2.6.2"
},
"dependencies": {
"globby": "^7.1.1",
"yargs": "^10.1.1"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2
},
"scripts": {
"build": "tsc",
"test": "npx mocha --require ts-node/register --recursive ./test/*.ts",
"start": "ts-node src/bin.ts test/support/query.sql",
"release": "tsc && npx npm-github-release"
}
}