This repository was archived by the owner on Aug 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.26 KB
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
{
"name": "yaowst",
"version": "0.1.1",
"description": "Yet another OpsWorks ssh Tool",
"author": {
"name": "Andreas Diem",
"email": "develop+yaowst@andreas-diem.at"
},
"keywords": [
"aws",
"opsworks",
"ssh"
],
"bin": {
"yaowst": "./bin/yaowst.js"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/w4andy/node-yaowst/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:w4andy/node-yaowst.git"
},
"dependencies": {
"aws-sdk": "2.332.0",
"cli-spinner": "0.2.8",
"deep-extend": "0.6.0",
"shelljs": "0.8.2",
"step": "1.0.0",
"yargs": "12.0.2"
},
"optionalDependencies": {},
"devDependencies": {
"changelog42": "0.9.0",
"eslint": "5.6.1",
"mocha": "5.2.0",
"next-update": "3.6.0",
"nyc": "13.0.1"
},
"main": "./lib",
"scripts": {
"test": "eslint ./ && nyc --reporter=lcov --reporter=text --reporter=text-summary _mocha ./test",
"update": "node_modules/.bin/next-update -k",
"log": "node_modules/.bin/changelog42 --no-author --commit-url=https://github.com/w4andy/node-yaowst/commit",
"clean": "rm -rf node_modules/ && rm -rf coverage/ && rm -rf .nyc_output/ && rm -f npm-debug.log"
},
"engines": {
"node": ">=0.10.41"
}
}