-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
64 lines (64 loc) · 1.61 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
{
"name": "electron-log",
"version": "5.2.1",
"description": "Just a simple logging module for your Electron application",
"main": "src/index.js",
"browser": "src/renderer/index.js",
"engines": {
"node": ">= 14"
},
"scripts": {
"lint": "eslint '**/*.{js,cjs}' --ignore-pattern '**/dist/*.js' && tsc --noEmit",
"test": "humile 'src/**/*spec.js'",
"test:full": "npm run test && npm run lint && npm run test:e2e",
"test:e2e": "humile 'e2e/**/*.spec.{js,cjs}' -R list",
"postversion": "git push && git push --tags",
"prepack": "npm run test:full",
"preversion": "npm run test:full"
},
"typings": "src/index.d.ts",
"repository": "megahertz/electron-log",
"files": [
"src/*",
"!**/__specs__",
"!**/.*",
"main.js",
"main.d.ts",
"node.js",
"node.d.ts",
"preload.js",
"renderer.js",
"renderer.d.ts"
],
"keywords": [
"electron",
"atom",
"log",
"logger",
"logging",
"windows",
"mac",
"osx",
"linux",
"desktop"
],
"author": "Alexey Prokhorov",
"license": "MIT",
"bugs": "https://github.com/megahertz/electron-log/issues",
"homepage": "https://github.com/megahertz/electron-log#readme",
"devDependencies": {
"@types/node": "^20.10.6",
"electron": "*",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"humile": "^0.5.3",
"nw": "^0.83.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-electron": "^0.15.5",
"vite-plugin-electron-renderer": "^0.14.5",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}