This repository was archived by the owner on Jun 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.69 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
52
53
54
55
56
57
58
59
60
{
"name": "@zenclabs/deploy",
"version": "0.0.11",
"author": "Francois Wouts <f@zenc.io>",
"license": "MIT",
"description": "Deploy is a command-line tool that aims to make Docker deployments as simple as possible.",
"keywords": [
"AWS",
"Docker"
],
"repository": {
"type": "git",
"url": "https://github.com/zenclabs/deploy.git"
},
"homepage": "https://github.com/zenclabs/deploy",
"bugs": "https://github.com/zenclabs/deploy/issues",
"bin": {
"deploy": "./dist/main.js"
},
"scripts": {
"dev": "ts-node src/main.ts",
"build": "rimraf dist/ && webpack && echo \"#!/usr/bin/env node\\n\" | cat - dist/main.js > dist/main-with-prefix.js && mv dist/main-with-prefix.js dist/main.js && chmod +x dist/main.js"
},
"dependencies": {
"analytics-node": "^3.2.0",
"atob": "^2.0.3",
"aws-sdk": "^2.188.0",
"axios": "^0.19.1",
"btoa": "^1.1.2",
"chalk": "^2.3.0",
"commander": "^5.0.0",
"dockerode": "^3.0.1",
"inquirer": "^7.0.0",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"package-info": "^3.0.1",
"portfinder": "^1.0.13",
"source-map-support": "^0.5.3",
"uuid": "^7.0.0"
},
"devDependencies": {
"@types/analytics-node": "3.1.2",
"@types/axios": "^0.14.0",
"@types/chalk": "^2.2.0",
"@types/dockerode": "^2.5.3",
"@types/inquirer": "0.0.36",
"@types/lodash": "^4.14.98",
"@types/mkdirp": "^1.0.0",
"@types/node": "^13.1.0",
"@types/uuid": "^7.0.0",
"imports-loader": "^0.8.0",
"nodemon": "^2.0.0",
"rimraf": "^3.0.0",
"ts-loader": "^3.3.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"uglifyjs-webpack-plugin": "^1.1.8",
"webpack": "^3.10.0"
}
}