forked from Node-Virtualization/node-virtualbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.67 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
{
"name": "virtualbox",
"version": "1.1.2",
"description": "A library to interact with VirtualBox.",
"author": "Azer Koculu <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/Node-Virtualization/node-virtualbox/issues",
"contributors": [
{
"name": "Azer Koculu",
"url": "http://azer.bike",
"email": "[email protected]"
},
{
"name": "Michael Sanford",
"url": "http://accidentalbeard.com"
},
{
"name": "Jonathan Ling",
"url": "https://jonathanling.net"
},
{
"name": "Steffen Roegner",
"url": "http://www.sroegner.org"
},
{
"name": "Jakub Lekstan",
"url": "https://github.com/kuebk"
},
{
"name": "Christopher'chief' Najewicz",
"url": "http://chiefy.github.io"
},
{
"name": "Cédric Belin",
"url": "http://belin.io"
},
{
"name": "bschaepper",
"url": "https://github.com/bschaepper"
},
{
"name": "2roy999",
"url": "https://github.com/2roy999"
},
{
"name": "Felipe Miranda",
"url": "https://github.com/felipemdrs"
}
],
"keywords": [
"virtualbox",
"vboxmanage",
"vboxheadless"
],
"directories": {
"lib": "./lib"
},
"scripts": {
"test": "jest ./test/*.spec.js",
"lint": "jshint ./lib ./test"
},
"main": "./lib/virtualbox",
"repository": {
"type": "git",
"url": "https://github.com/Node-Virtualization/node-virtualbox.git"
},
"dependencies": {
"log4js": "^4.0.2"
},
"devDependencies": {
"async": "^2.1.4",
"jest": "^26.0.1",
"jshint": "^2.12.0"
},
"engines": {
"engine": "node >= 0.4.1"
}
}