-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
{
"name": "pg-scanner",
"version": "1.0.0",
"main": "index.js",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"scripts": {
"docker": "docker run -d --name postgres -e POSTGRES_HOST_AUTH_METHOD=trust -p 5432:5432 postgres:15.4-alpine",
"test": "zUnit",
"lint": "eslint .",
"coverage": "nyc --report html --reporter lcov --reporter text-summary npm test",
"prepare": "husky install"
},
"contributors": [
"Chris Stanlake (https://github.com/codetopixels)",
"Stephen Cresswell (https://github.com/cressie176)"
],
"license": "MIT",
"description": "Reports PostgreSQL database statistics",
"keywords": [
"metrics",
"PostgreSQL",
"pg_stat_all_tables",
"sequencial",
"scan"
],
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-airbnb-base": "^15.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"nyc": "^15.1.0",
"zunit": "^4.0.2"
},
"peerDependencies": {
"pg": "^8.0.0"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acuminous/pg-scanner.git"
},
"bugs": {
"url": "https://github.com/acuminous/pg-scanner/issues"
},
"homepage": "https://github.com/acuminous/pg-scanner#readme",
"author": "",
"types": "./index.d.ts"
}