-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "electron-main-window",
"version": "1.0.4",
"description": "Get the main window of an Electron Application",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint",
"lint": "cross-env NODE_ENV=development eslint --cache --format=pretty --ext .js .",
"lint-fix": "npm --silent lint --fix; exit 0",
"postlint-fix": "prettier --ignore-path .eslintignore --single-quote --write '**/*.*{js,json}'",
"login": "npm login",
"publish": "npm publish"
},
"author": "Ganesh Rathinavel",
"license": "MIT",
"devDependencies": {
"electron": "^4.0.4",
"eslint": "^5.12.1",
"eslint-config-prettier": "^3.5.0",
"eslint-formatter-pretty": "^2.1.0",
"eslint-plugin-compat": "^2.6.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"prettier": "^1.15.3",
"prettier-eslint": "^8.8.2"
},
"files": [
"lib"
],
"keywords": [
"main",
"electron",
"window"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ganeshrvel/npm-electron-main-window.git"
},
"homepage": "https://github.com/ganeshrvel/npm-electron-main-window",
"peerDependencies": {
"electron": "^2.0.0 || ^3.0.0 || ^4.0.0",
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"dependencies": {}
}