-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
67 lines (67 loc) · 1.3 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "electron-timber",
"version": "1.0.0",
"description": "Pretty logger for Electron apps",
"license": "MIT",
"repository": "sindresorhus/electron-timber",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"// disabled until spectron is fixed // test": "xo && cd test/fixture && ava",
"test": "xo",
"start": "electron test/fixture",
"make-screenshot": "svg-term --at=2000 --command=\"electron test/fixture\" --out=screenshot.svg --window --no-cursor --height=8"
},
"files": [
"index.js",
"preload.mjs"
],
"keywords": [
"electron",
"logger",
"logging",
"log",
"timber",
"lumber",
"dev",
"development",
"stdout",
"stderr",
"stream",
"error",
"debug",
"pretty",
"console"
],
"dependencies": {
"auto-bind": "^5.0.1",
"chalk": "^5.3.0",
"electron-util": "^0.18.1",
"randoma": "^2.0.0",
"split2": "^4.2.0"
},
"devDependencies": {
"ava": "^6.1.2",
"delay": "^6.0.0",
"electron": "^30.0.1",
"spectron": "^19.0.0",
"svg-term-cli": "^2.1.1",
"xo": "^0.58.0"
},
"xo": {
"envs": [
"node",
"browser"
]
}
}