-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.67 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.67 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
64
65
66
67
68
69
70
71
72
{
"version": "1.1.5",
"name": "@cn-shell/postgresql",
"description": "A Cloud Native Shell extension for PostgreSQL",
"main": "./dist/main.js",
"bin": "",
"files": [
"dist/**/*"
],
"lint-staged": {
"**/*.js": [
"prettier --write",
"git add"
],
"**/*.{json,md,yaml}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"trailingComma": "all"
},
"scripts": {
"build": "tsc",
"format-ts": "prettier --write 'src/**/*.ts'",
"format-js": "prettier --write 'dist/**/*.{js,ts}'",
"format-misc": "prettier --write '**/*.{json,md,yaml}'",
"install-bin": "npm install -g $(npm pack . | tail -1)",
"test": "echo \"No tests\" && exit 0",
"clean": "rm -rf ./dist",
"prepare": "npm run clean && npm run format-ts && npm run format-misc && tsc",
"prepublishOnly": "npm run format-js && npm test"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"Cloud",
"Native ",
"Application",
"Shell",
"Extension",
"PostgreSQL"
],
"author": "Black Eye Technology",
"license": "MIT",
"devDependencies": {
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/node": "^12.12.54",
"@types/pg": "^7.14.4",
"cn-shell": "^2.14.0",
"pg": "^8.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blackeyetech/cns-postgresql.git"
},
"bugs": {
"url": "https://github.com/blackeyetech/cns-postgresql/issues"
},
"homepage": "https://github.com/blackeyetech/cns-postgresql#readme"
}