UNPKG

@dockerless/cli

Version:

CLI tool for managing Docker applications on AWS

93 lines (92 loc) 2.06 kB
{ "name": "@dockerless/cli", "version": "1.0.0", "description": "CLI tool for managing Docker applications on AWS", "publishConfig": { "access": "public" }, "engines": { "node": ">= 10.13.0", "npm": ">= 6.11.0" }, "keywords": [ "aws", "aws ECS", "dockerless", "serverless", "docker", "cli", "docker cli" ], "main": "lib/index.js", "bin": { "dockerless": "bin/dockerless" }, "scripts": { "test": "jest --config jest.json", "start": "npm run build && node lib/main.js", "build": "del-cli lib && webpack", "lint": "eslint src --ext .ts", "lint:fix": "npm run lint -- --fix" }, "repository": { "type": "git", "url": "git+https://github.com/dockerless/dockerless-cli.git" }, "author": "Sacha Reinert", "license": "MIT", "bugs": { "url": "https://github.com/dockerless/dockerless-cli/issues" }, "homepage": "https://github.com/dockerless/dockerless-cli#readme", "dependencies": { "arg": "^4.1.3", "aws-sdk": "^2.596.0", "js-yaml": "^3.13.1", "listr": "^0.14.3", "rxjs": "^6.5.5" }, "devDependencies": { "@types/events": "^3.0.0", "@types/jest": "^24.0.25", "@types/js-yaml": "^3.12.1", "@types/listr": "^0.14.2", "@types/node": "^13.1.1", "@typescript-eslint/eslint-plugin": "^2.20.0", "@typescript-eslint/parser": "^2.20.0", "del": "^5.1.0", "del-cli": "^3.0.1", "eslint": "^6.8.0", "eslint-config-prettier": "^6.10.0", "eslint-config-xo": "^0.29.1", "eslint-plugin-prettier": "^3.1.2", "husky": "^3.1.0", "jest": "^26.1.0", "lint-staged": "^9.5.0", "prettier": "^1.19.1", "ts-jest": "^26.1.1", "ts-loader": "^6.2.1", "typescript": "^3.7.4", "webpack": "^4.44.2", "webpack-cli": "^3.3.12", "webpack-node-externals": "^2.5.2" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{css,scss}": [ "stylelint" ], "*.{ts,tsx}": [ "npm run lint:fix", "jest --config jest.json --findRelatedTests" ], "*.{js,ts,tsx,json,css,scss,md,eslintrc,prettierrc}": [ "prettier --write", "git add" ] } }