-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "@simoware/log4js-pg-appender",
"engines": {
"node": ">=20.0.0"
},
"version": "0.0.3",
"description": "Simple Log4js postgresql appender",
"main": "dist/log4js-pg-appender.min.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"directories": {
"lib": "lib"
},
"scripts": {
"test": "node --test test/**/*.test.js",
"test:watch": "node --test --watch test/**/*.test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run lint:fix && npm run test",
"build": "node build.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/massimo-ua/log4js-pg-appender.git"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/massimo-ua/log4js-pg-appender/issues"
},
"homepage": "https://github.com/massimo-ua/log4js-pg-appender#readme",
"dependencies": {
"pg": "8.13.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"log4js": "^6.9.1",
"sinon": "^19.0.2"
}
}