-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 929 Bytes
/
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
{
"name": "pg-monitor",
"version": "2.1.0",
"description": "Event monitor for pg-promise.",
"main": "lib/index.js",
"typings": "typescript/pg-monitor.d.ts",
"scripts": {
"test": "jasmine-node test",
"lint": "eslint ./lib ./test/*.js ./test/events"
},
"files": [
"lib",
"typescript"
],
"homepage": "https://github.com/vitaly-t/pg-monitor",
"repository": {
"type": "git",
"url": "https://github.com/vitaly-t/pg-monitor.git"
},
"bugs": {
"url": "https://github.com/vitaly-t/pg-monitor/issues"
},
"keywords": [
"pg-promise",
"monitor",
"node-postgres"
],
"author": {
"name": "Vitaly Tomilov",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"dependencies": {
"cli-color": "2.0.4"
},
"devDependencies": {
"eslint": "8.57.0",
"jasmine-node": "3.0.0",
"typescript": "5.4.4"
}
}