forked from megahertz/electron-log
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.39 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.39 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
{
"name": "electron-log",
"version": "2.2.14",
"description": "Just a very simple logging module for your Electron application",
"main": "./index.js",
"scripts": {
"test": "npm run jshint && npm run jscs && npm run tslint && npm run mocha && npm run test-projects",
"mocha": "mocha index.spec.js lib/{,**/}{,**/}*.spec.js",
"test-projects": "mocha test-projects/**/*.spec.js",
"test-projects-install": "node test-projects/install.js",
"jscs": "jscs .",
"jshint": "jshint --exclude ./node_modules,./test-projects . --verbose",
"tslint": "tslint electron-log.d.ts"
},
"typings": "./electron-log.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/megahertz/electron-log.git"
},
"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": {
"url": "https://github.com/megahertz/electron-log/issues"
},
"homepage": "https://github.com/megahertz/electron-log#readme",
"devDependencies": {
"chai": "*",
"jscs": "*",
"jshint": "*",
"jshint-reporter-jscs": "*",
"mocha": "*",
"rewire": "*",
"tslint": "*",
"typescript": "*"
}
}