-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.68 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 3.68 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@wgtechlabs/log-engine",
"version": "2.3.1",
"description": "A lightweight, security-first logging utility with automatic data redaction for Node.js applications - the first logging library with built-in PII protection.",
"type": "module",
"keywords": [
"logging",
"logger",
"log",
"winston-alternative",
"security",
"redaction",
"pii-protection",
"data-redaction",
"typescript",
"javascript",
"nodejs",
"express",
"fastify",
"koa",
"nestjs",
"bot",
"discord",
"telegram",
"privacy",
"gdpr",
"compliance",
"opensource",
"mit-license",
"esm",
"cjs",
"zero-dependencies",
"structured-logging",
"json-logging"
],
"packageManager": "pnpm@9.15.4",
"license": "MIT",
"author": "WG Tech Labs <opensource@wgtechlabs.com> (https://wgtechlabs.com)",
"contributors": [
"Waren Gonzaga <opensource@warengonzaga.com> (https://warengonzaga.com)"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/wgtechlabs"
},
{
"type": "github",
"url": "https://github.com/sponsors/warengonzaga"
}
],
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.cjs"
}
}
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wgtechlabs/log-engine.git"
},
"homepage": "https://github.com/wgtechlabs/log-engine#readme",
"bugs": {
"url": "https://github.com/wgtechlabs/log-engine/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"scripts": {
"build": "node scripts/forklift-runner.js --clean",
"build:watch": "node scripts/forklift-runner.js --watch",
"start": "node dist/cjs/index.cjs",
"prepublishOnly": "pnpm build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage:watch": "jest --coverage --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:ci:debug": "jest --runInBand --detectOpenHandles --verbose",
"test:unit": "jest --testNamePattern=\"^((?!integration).)*$\"",
"test:integration": "jest integration.test.ts",
"test:redaction": "jest --testPathPattern=\"redaction/\"",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"lint:security": "eslint src/**/*.ts --config eslint.security.config.js",
"secure:scan": "snyk code test",
"secure:test": "snyk test --org=wgtechlabs",
"secure:code": "snyk code test --org=wgtechlabs",
"secure": "run-s lint:security secure:test secure:code",
"size:check": "node scripts/check-size.js",
"validate": "run-s lint test build size:check",
"clean": "rm -rf dist coverage",
"coverage:open": "open coverage/lcov-report/index.html",
"coverage:upload": "npx codecov"
},
"devDependencies": {
"@types/eslint-plugin-security": "^3",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"eslint": "^8.45.0",
"eslint-plugin-security": "^2.0.0",
"jest": "^29.0.0",
"npm-run-all": "^4.1.5",
"snyk": "^1.1000.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}