-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
39 lines (39 loc) · 859 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
37
38
39
{
"name": "electron-drag",
"version": "2.0.0",
"description": "Window dragging for electron applications",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "electron test/app.js",
"test-rebuild": "electron-rebuild"
},
"repository": {
"type": "git",
"url": "https://github.com/kapetan/electron-drag"
},
"keywords": [
"electron",
"mouse",
"drag",
"window"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kapetan/electron-drag/issues"
},
"homepage": "https://github.com/kapetan/electron-drag",
"optionalDependencies": {
"osx-mouse": "^2.0.0",
"win-mouse": "^2.0.1"
},
"dependencies": {
"dombo": "^3.2.0",
"try-require": "^1.2.1"
},
"devDependencies": {
"electron": "^10.1.1",
"electron-rebuild": "^2.0.2",
"standard": "^14.3.4"
}
}