forked from megahertz/electron-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "electron-log",
"version": "4.1.1",
"description": "Just a very simple logging module for your Electron application",
"main": "src/index.js",
"scripts": {
"lint": "eslint '**/*.js' --ignore-pattern '**/dist/*.js' && tsc --noEmit",
"test": "humile 'src/**/*spec.js'",
"test:full": "npm run test && npm run lint && npm run test:projects",
"test:projects": "humile 'test-projects/**/*.spec.js' -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__"
],
"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": "^13.1.8",
"electron": "*",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"humile": "*",
"nw": "0.42.3",
"typescript": "*",
"webpack": "*",
"webpack-cli": "*"
}
}