-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
36 lines (36 loc) · 836 Bytes
/
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
{
"name": "electron-window",
"version": "0.8.1",
"description": "Convenience methods for Electron windows.",
"main": "./lib/index.js",
"scripts": {
"test": "standard && find ./lib -name *.test.js | xargs mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/jprichardson/electron-window"
},
"keywords": [
"window",
"atom",
"atom-shell",
"electron",
"gui",
"electron-component"
],
"author": "JP Richardson",
"license": "MIT",
"bugs": {
"url": "https://github.com/jprichardson/electron-window/issues"
},
"homepage": "https://github.com/jprichardson/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"
}
}