-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "molindo-node-logger",
"version": "2.0.0",
"description": "A node.js logger that integrates well with the Molindo infrastructure.",
"main": "dist/index.js",
"repository": "https://github.com/molindo/molindo-node-logger.git",
"author": "Jan Amann <[email protected]>",
"license": "MIT",
"keywords": [
"node",
"logger",
"logging",
"winston"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "bunchee",
"lint": "eslint src",
"test": "vitest",
"prepublish": "yarn run lint && yarn run test -- --run && rimraf ./dist && npm run build"
},
"files": [
"dist"
],
"devDependencies": {
"babel-jest": "21.2.0",
"bunchee": "^5.1.2",
"eslint": "8.56.0",
"eslint-config-molindo": "7.0.0",
"prettier": "3.2.5",
"supertest": "6.3.4",
"vitest": "^1.3.1"
},
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.19.2",
"express-winston": "^4.2.0",
"winston": "^3.13.0",
"winston-transport": "^4.7.0"
},
"engines": {
"node": ">= 20"
}
}