-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "node-virtualbox",
"version": "0.2.4",
"description": "A lightweight tool/module for provisioning VirtualBox virtual machines.",
"main": "index.js",
"scripts": {
"test": "mocha test/integration/*.js",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ottomatica/node-virtualbox.git"
},
"keywords": [
"vagrant",
"virtualbox"
],
"author": "ottomatica",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ottomatica/node-virtualbox/issues"
},
"homepage": "https://github.com/ottomatica/node-virtualbox#readme",
"bin": "bin.js",
"dependencies": {
"bluebird": "^3.5.1",
"download": "^8.0.0",
"fs-extra": "^9.0.1",
"ip": "^1.1.5",
"is-port-available": "^0.1.5",
"lodash": "^4.17.10",
"md5-file": "^4.0.0",
"mustache": "^4.0.0",
"progress": "^2.0.0",
"scp2": "^0.5.0",
"ssh2": "^0.8.2",
"tar": "^5.0.5",
"yargs": "^15.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^8.0.1",
"standard-version": "^8.0.0"
}
}