-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 980 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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "ahk",
"version": "0.0.1",
"description": "AutoHotKey desktop automation",
"keywords": [
"AutoHotKey",
"autohotkey",
"ahk",
"autoit",
"automation",
"hotkeys",
"shortcuts",
"scripting",
"sendkeys",
"keyboard",
"mouse",
"windows",
"desktop"
],
"author": {
"name": "Isaiah Odhner",
"email": "isaiah.odhner@gmail.com",
"url": "https://isaiahodhner.io/"
},
"license": "GPL-2.0+",
"homepage": "http://github.com/1j01/node-ahk/",
"bugs": {
"url": "https://github.com/1j01/node-ahk/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/1j01/node-ahk.git"
},
"os": [
"win32"
],
"engines": {
"node": ">=0.10.20"
},
"main": "./lib/main",
"dependencies": {
"edge": "~0.9.3"
},
"devDependencies": {
"coffee-script": "~1.6.3"
},
"scripts": {
"start": "coffee test.coffee",
"prepublish": "coffee -c -o lib/ main.coffee"
}
}