-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.01 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.01 KB
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
68
69
70
71
72
73
74
75
76
77
{
"name": "@jscv-solutions/node-logger",
"version": "1.1.0",
"description": "Already-configured logger for Node.js applications based on Winston.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "pnpm run build:cjs && pnpm run build:esm",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"lint": "eslint . --ext .{mts,ts}",
"test": "pnpm run build && cross-env TS_NODE_PROJECT=tsconfig.tests.json node --require ts-node/esm --test tests/*.spec.{mts,ts}"
},
"keywords": [
"logger",
"winston",
"logging",
"js",
"javascript",
"ts",
"typescript",
"nodejs"
],
"author": {
"name": "Juansecu",
"email": "contact@juansecu.com",
"url": "https://github.com/Juansecu"
},
"license": "MIT",
"homepage": "https://github.com/JSCV-Solutions/nodejs-logger",
"bugs": "https://github.com/JSCV-Solutions/nodejs-logger/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/JSCV-Solutions/nodejs-logger"
},
"engines": {
"node": ">=22.18.0",
"pnpm": ">=10.15.0"
},
"packageManager": "pnpm@10.15.0",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"peerDependencies": {
"winston": "^3.18.3"
},
"peerDependenciesMeta": {
"winston": {
"optional": false
}
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^22.19.1",
"@types/validate-npm-package": "^1.0.3",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4",
"validate-npm-package": "^1.0.5"
}
}