-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
93 lines (81 loc) · 1.21 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name" : "robot-js",
"version" : "2.0.0",
"robot" : "2.0.0",
"license" : "Zlib",
"main" : "lib/robot.js",
"gypfile" : true,
"description" : "Native system automation for node.js",
"homepage" : "http://getrobot.net",
"author":
{
"name" : "David Krutsko",
"email" : "[email protected]",
"url" : "http://krutsko.net"
},
"repository":
{
"type" : "git",
"url" : "https://github.com/robot/robot-js.git"
},
"bugs":
{
"url" : "https://github.com/robot/robot-js/issues"
},
"scripts":
{
"install" : "node scripts/install.js || node-gyp rebuild",
"test" : "node test/test.js types timer"
},
"config":
{
"verify" : true
},
"engines":
{
"node" : "0.12 - 9"
},
"os":
[
"linux",
"darwin",
"win32"
],
"cpu":
[
"arm",
"x64",
"ia32"
],
"keywords":
[
"autoit",
"native",
"system",
"automation",
"hash",
"keyboard",
"mouse",
"process",
"memory",
"window",
"screen",
"monitor",
"display",
"timer",
"clock",
"clipboard",
"keylogging"
],
"dependencies":
{
"colors" : "~1.1",
"node-gyp" : "~3.6"
},
"devDependencies":
{
"sprintf-js" : "~1.1",
"node-png" : "~0.4",
"readline-sync" : "~1.4"
}
}