forked from megahertz/electron-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "electron-log",
"version": "3.0.5",
"description": "Just a very simple logging module for your Electron application",
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.js' --ignore-pattern '**/dist/*.js'",
"mocha": "mocha '**/*.spec.js' --exclude 'test-projects/**' --exclude 'node_modules/**'",
"test": "npm run lint && npm run tslint && npm run mocha && npm run test-projects",
"test-projects": "mocha 'test-projects/**/*.spec.js'",
"tslint": "tslint -p . -t verbose electron-log.d.ts"
},
"typings": "electron-log.d.ts",
"repository": "megahertz/electron-log",
"files": [
"index.js",
"main.js",
"renderer.js",
"lib/**/*.js",
"!lib/**/*.spec.js",
"electron-log.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": {
"@babel/core": "*",
"@babel/preset-env": "*",
"babel-loader": "*",
"chai": "*",
"electron": "*",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-plugin-import": "*",
"mocha": "*",
"nw": "0.36.2",
"tslint": "*",
"typescript": "*",
"webpack": "*",
"webpack-cli": "*"
}
}