forked from kylepaulsen/kbm-robot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 783 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 783 Bytes
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
{
"name": "kbm-robot",
"version": "0.0.7",
"description": "A module to help you emulate system wide keyboard and mouse actions.",
"main": "kbm-robot.js",
"scripts": {
"clean": "mvn clean",
"package": "mvn package",
"build": "mvn clean && mvn package",
"deploy:win": "npm run build && copy robot\\target\\robot.jar resources\\robot.jar && npm run clean",
"deploy:nix": "npm run build && cp ./robot/target/robot.jar ./resources/robot.jar && npm run clean"
},
"keywords": [
"keyboard",
"mouse",
"emulation",
"robot"
],
"author": "Kyle Paulsen <kyle.a.paulsen@gmail.com> (http://www.kylepaulsen.com/)",
"repository": "https://github.com/kylepaulsen/kbm-robot",
"license": "MIT",
"dependencies": {
"promise": "^6.1.0"
}
}