-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
33 lines (33 loc) · 863 Bytes
/
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
{
"name": "overcast",
"description": "A simple command line program that makes it easy to spin up, configure, and manage virtual machines over SSH.",
"version": "2.2.6",
"repository": "https://github.com/andrewchilds/overcast.git",
"author": {
"name": "Andrew Childs",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=13.2.x"
},
"type": "module",
"main": "overcast.js",
"scripts": {
"test": "cd test && npx jasmine --random=false integration/*.spec.js",
"docs": "node bin/overcast-docs.js > temp.md"
},
"bin": {
"overcast": "./overcast.js"
},
"dependencies": {
"chalk": "5.3.0",
"minimist": "1.2.8",
"do-wrapper": "github:andrewchilds/do-wrapper#main",
"slack-notify": "2.0.6"
},
"devDependencies": {
"eslint": "8.9.0",
"jasmine": "4.0.2"
}
}