-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
67 lines (67 loc) · 1.94 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
64
65
66
67
{
"name": "nodejs-health-checker",
"version": "1.6.16",
"description": "Simple Nodejs package to simplify applications based in Node, to trace the healthy of the pods",
"author": "Gritzko D. Kleiner <gritzkoo@hotmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gritzkoo/nodejs-health-checker.git"
},
"keywords": [
"nodejs",
"typescript",
"healthcheck",
"health-check",
"health-checker",
"healthchecker",
"pods"
],
"bugs": {
"url": "https://github.com/gritzkoo/nodejs-health-checker/issues"
},
"homepage": "https://github.com/gritzkoo/nodejs-health-checker#readme",
"scripts": {
"dev": "nodemon --watch \"src/\" --exec \"ts-node src/index.ts\" -e ts",
"test": "jest --forceExit --testTimeout=60000",
"test:coverage": "jest --collect-coverage --forceExit --testTimeout=60000",
"format": "prettier --config .prettierrc.json --ignore-unknown --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"build": "tsc"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^27.5.2",
"@types/memcached": "^2.2.7",
"@types/node": "^14.18.36",
"@types/node-fetch": "^2.6.2",
"@types/redis": "^2.8.32",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"express": "^4.18.2",
"jest": "^27.5.1",
"nodemon": "^3.0.1",
"prettier": "^2.8.4",
"ts-jest": "^27.1.5",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.276.0",
"mariadb": "^2.5.6",
"memcached": "^2.2.2",
"mysql2": "^3.9.4",
"node-fetch": "^2.6.9",
"pg": "^8.9.0",
"pg-hstore": "^2.3.4",
"redis": "^3.1.2",
"sequelize": "^6.28.1",
"sqlite3": "^5.1.7"
},
"files": [
"dist/**/*"
]
}