UNPKG

run-in-container

Version:

CLI to assist running commands inside containers

114 lines (113 loc) 2.9 kB
{ "author": "robertsmieja", "bin": { "ric": "./bin/run", "run-in-container": "./bin/run" }, "bugs": "https://github.com/robertsmieja/run-in-container/issues", "dependencies": { "@oclif/command": "^1.5.19", "@oclif/config": "^1.14.0", "@oclif/plugin-autocomplete": "^0.1.5", "@oclif/plugin-commands": "^1.2.3", "@oclif/plugin-help": "^2.2.3", "@oclif/plugin-not-found": "^1.2.3", "@oclif/plugin-warn-if-update-available": "^1.7.0", "conf-cli": "^0.1.9", "inquirer": "^7.1.0", "lookpath": "^1.0.5", "tslib": "^1.11.1" }, "description": "CLI to assist running commands inside containers", "devDependencies": { "@oclif/dev-cli": "^1.22.2", "@types/inquirer": "^6.5.0", "@types/jest": "^25.1.4", "@types/node": "^13.9.1", "ajv": "^6.12.0", "chai": "^4.2.0", "eslint": "^6.8.0", "eslint-config-oclif": "^3.1.0", "eslint-config-oclif-typescript": "^0.1.0", "eslint-config-prettier": "^6.10.0", "eslint-plugin-prettier": "^3.1.2", "husky": "^4.2.3", "jest": "^25.1.0", "lint-staged": "^10.0.8", "npm-run-all": "^4.1.5", "prettier": "^1.19.1", "rimraf": "^3.0.2", "ts-jest": "^25.2.1", "ts-node": "^8.6.2", "typescript": "^3.8.3" }, "engines": { "node": ">=12.0.0", "npm": ">=6.0.0" }, "files": [ "/bin", "/lib", "/oclif.manifest.json" ], "homepage": "https://github.com/robertsmieja/run-in-container", "husky": { "hooks": { "pre-commit": [ "lint-staged" ] } }, "keywords": [ "oclif", "run", "in", "container", "ric", "run-in-container" ], "license": "MIT", "lint-staged": { "*.{js,ts,jsx,tsx,json,md}": [ "prettier --write" ], "src/*.{js,ts,jsx,tsx}": [ "eslint --fix" ] }, "main": "lib/index.js", "name": "run-in-container", "oclif": { "bin": "run-in-container", "commands": "./lib/commands", "hooks": { "init": [ "./lib/hooks/init" ] }, "plugins": [ "conf-cli", "@oclif/plugin-autocomplete", "@oclif/plugin-commands", "@oclif/plugin-help", "@oclif/plugin-not-found", "@oclif/plugin-warn-if-update-available" ] }, "repository": "robertsmieja/run-in-container", "scripts": { "build": "tsc -b", "clean": "rimraf lib", "lint": "eslint ./src/**/*", "lint:fix": "eslint --fix ./src/**/*", "lint:staged": "lint-staged", "prettier": "prettier --write '*.{js,ts,jsx,tsx,json,md}'", "postpack": "rimraf oclif.manifest.json", "posttest": "eslint . --ext .ts --fix", "prepack": "npm-run-all test clean build && oclif-dev manifest && oclif-dev readme && git add README.md", "test": "jest --coverage", "version": "oclif-dev readme && git add README.md" }, "types": "lib/index.d.ts", "version": "0.2.2" }