-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
{
"type": "module",
"name": "pinniped-cli",
"version": "0.5.1",
"description": "CLI tool for Creating, Managing, and Deploying your Pinniped projects",
"main": "./src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"contributors": [
{
"name": "Alan Cho",
"email": "[email protected]"
},
{
"name": "Jonathan Hurd",
"email": "[email protected]"
},
{
"name": "Josh Lakenan",
"email": "[email protected]"
},
{
"name": "Trevor Rees-Jones",
"email": "[email protected]"
}
],
"keywords": [],
"author": "",
"license": "ISC",
"bin": {
"pinniped": "./bin/index.js"
},
"dependencies": {
"@aws-sdk/client-ec2": "^3.541.0",
"aws-sdk": "^2.1584.0",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.15",
"ora": "^8.0.1",
"ssh2": "^1.15.0",
"ssh2-sftp-client": "^10.0.3",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=16"
}
}