-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.74 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
60
61
62
63
{
"name": "@hyperjumptech/db-connection-checker",
"description": "A Node.js library for checking database connection",
"version": "0.0.2",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"scripts": {
"dev": "rollup -c -w",
"build": "rimraf dist && cross-env NODE_ENV=production rollup -c",
"format": "prettier --write --ignore-path .gitignore .",
"format:check": "prettier --check --ignore-path .gitignore .",
"lint": "eslint --ignore-path .gitignore .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"mariadb": "^3.0.1",
"mongodb": "^4.10.0",
"pg": "^8.8.0",
"redis": "^4.3.1"
},
"devDependencies": {
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitest/coverage-c8": "^0.23.4",
"cross-env": "^7.0.3",
"esbuild": "^0.15.8",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.10.1",
"typescript": "^4.8.3",
"vitest": "^0.23.4"
},
"files": [
"dist"
],
"license": "MIT",
"author": "Kevin Hermawan",
"repository": {
"type": "git",
"url": "git+https://github.com/hyperjumptech/db-connection-checker.git"
},
"bugs": {
"url": "https://github.com/hyperjumptech/db-connection-checker/issues"
},
"homepage": "https://github.com/hyperjumptech/db-connection-checker#readme",
"keywords": [
"database",
"mariadb",
"mongodb",
"postgres",
"redis",
"database-checker"
]
}