-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "vbox-robot",
"version": "0.1.0",
"description": "Tool allowing JavaScripts scripts running in a browser to send keyboard and mouse events to the Virtual Box machine they run in, especially for automated tests.",
"repository": {
"type": "git",
"url": "https://github.com/attester/vbox-robot.git"
},
"index": "index.js",
"bin": {
"vbox-robot": "bin/vbox-robot"
},
"author": "ariatemplates <[email protected]> (http://github.com/ariatemplates)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/attester/vbox-robot/issues"
},
"homepage": "https://github.com/attester/vbox-robot",
"dependencies": {
"@zxing/library": "^0.18.6",
"basic-auth": "^1.0.3",
"co": "^4.6.0",
"co-body": "^4.0.0",
"koa": "^2.0.0-alpha.3",
"koa-router": "^7.0.0",
"minimist": "^1.2.0",
"pify": "^2.3.0",
"pngjs": "^2.1.0",
"virtualbox-soap": "^2.0.0"
},
"engines": {
"node": ">=4.2.1"
},
"scripts": {
"prepare": "webpack",
"lint": "eslint src",
"test": "npm run lint"
},
"devDependencies": {
"eslint": "^1.10.3",
"qrcode": "^1.4.4",
"webpack": "^1.12.9"
}
}