-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "streams-logger",
"version": "3.1.4",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf ./dist/*",
"build": "tsc --build .",
"clean:build": "npm run clean && npm run build",
"watch": "tsc --watch",
"lint": "npx eslint .",
"format": "npx prettier --write .",
"format:lint": "npm run format && npm run lint",
"test": "npm update && npm run clean:build && npm update --prefix ./test && npm run clean:build --prefix ./test && npm start --prefix ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/far-analytics/streams-logger.git"
},
"author": "FAR",
"license": "MIT",
"bugs": {
"url": "https://github.com/far-analytics/streams-logger/issues"
},
"homepage": "https://github.com/far-analytics/streams-logger#readme",
"engines": {
"npm": ">=10.8.2",
"node": ">=18.20.8"
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@stylistic/eslint-plugin": "^5.4.0",
"@types/node": "^20.11.28",
"eslint": "^9.38.0",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
},
"keywords": [
"bunyan",
"logger",
"logging",
"logs",
"pino",
"stream",
"streams",
"streams-logger",
"winston"
],
"type": "commonjs"
}