-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "electron-localshortcut",
"version": "3.2.1",
"description": "register/unregister a keyboard shortcut locally to a BrowserWindow instance, without using a Menu",
"repository": "parro-it/electron-localshortcut",
"license": "MIT",
"author": "andrea@parro.it",
"scripts": {
"doc": "documentation readme index.js --section=API",
"start": "electron example.js",
"test": "electron test.js | faucet && xo",
"setup-dev": "npm rebuild --runtime=electron --target=4.2.12 --disturl=https://atom.io/download/atom-shell --abi=64",
"tape": "DEBUG=electron-localshortcut electron test.js"
},
"keywords": [
"electron",
"shortcuts",
"browser-window"
],
"files": [
"index.js"
],
"dependencies": {
"debug": "^4.0.1",
"electron-is-accelerator": "^0.1.0",
"keyboardevent-from-electron-accelerator": "^2.0.0",
"keyboardevents-areequal": "^0.2.1"
},
"devDependencies": {
"ava": "^2.4.0",
"delay": "^4.0.1",
"documentation": "^12.1.3",
"electron": "^4.2.12",
"faucet": "0.0.1",
"p-electron": "^0.8.0",
"p-event": "^4.1.0",
"p-timeout": "^3.2.0",
"robotjs": "^0.5.1",
"tape-async": "^2.3.0",
"xo": "^0.25.3"
}
}