-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.52 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
{
"name": "@nrchkb/logger",
"version": "3.2.1",
"description": "Unified Logger for Node-RED nodes (using debug)",
"main": "build/index.js",
"scripts": {
"build": "npm run clean && tsc",
"clean": "del-cli \"./build\"",
"test": "cross-env DEBUG=LOGGER* vitest run",
"format": "npx @biomejs/biome check --write",
"lint": "npx @biomejs/biome check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NRCHKB/logger.git"
},
"keywords": [
"node-red",
"NRCHKB",
"logger",
"debug"
],
"author": "Tadeusz Wyrzykowski <shaquu@icloud.com> (https://github.com/Shaquu)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NRCHKB/logger/issues"
},
"homepage": "https://github.com/NRCHKB/logger#readme",
"dependencies": {
"debug": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@types/node": "^20",
"@types/node-red": "^1.3.5",
"babel-eslint": "^10.1.0",
"cross-env": "^10.1.0",
"del-cli": "^7.0.0",
"node-red": "^4.1.1",
"node-red-node-test-helper": "^0.3.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
},
"vitest": {
"test": {
"environment": "node",
"testTimeout": 30000,
"include": [
"src/**/*.test.ts"
]
}
},
"files": [
"/build"
]
}