forked from jprichardson/electron-window
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "@valudio/electron-window",
"version": "1.0.0",
"description": "Convenience methods for Electron windows.",
"main": "./lib/index.js",
"scripts": {
"test": "standard && find ./lib -name *.test.js | xargs mocha",
"postversion": "npm publish",
"rls": "npm --no-git-tag-version version",
"rls:patch": "npm run rls -- patch",
"rls:minor": "npm run rls -- minor",
"rls:major": "npm run rls -- major"
},
"repository": {
"type": "git",
"url": "https://github.com/valudio/electron-window"
},
"keywords": [
"window",
"atom",
"atom-shell",
"electron",
"gui",
"electron-component"
],
"author": "JP Richardson",
"license": "MIT",
"bugs": {
"url": "https://github.com/valudio/electron-window/issues"
},
"homepage": "https://github.com/valudio/electron-window",
"devDependencies": {
"mocha": "2.x",
"proxyquire": "^1.6.0",
"standard": "^6.0.8",
"stubo": "^0.1.0"
},
"dependencies": {
"is-electron-renderer": "^2.0.0"
}
}