forked from andrewchilds/overcast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 937 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
34
35
{
"name": "overcast",
"description": "A simple command line program designed to make it easy to spin up, configure, and interact with any number of machines over SSH.",
"version": "0.6.12",
"repository": "https://github.com/andrewchilds/overcast.git",
"author": {
"name": "Andrew Childs",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": "0.10.x",
"npm": "2.1.x"
},
"main": "overcast.js",
"scripts": {
"test": "rm -rf ./test/integration/.overcast && node ./node_modules/jasmine-node/bin/jasmine-node --coffee --color --verbose ./test"
},
"bin": {
"overcast": "bin/overcast"
},
"dependencies": {
"aws-sdk": "2.0.0-rc.14",
"bluebird": "1.2.1",
"colors": "0.6.2",
"linode-api": "0.1.2",
"lodash": "2.4.1",
"minimist": "0.0.8",
"rimraf": "2.2.8",
"slack-notify": "0.1.1"
},
"devDependencies": {
"jasmine-node": "1.14.5"
}
}