@modyo/cli
Version:
Modyo CLI Command line to expose local development tools
164 lines • 4.25 kB
JSON
{
"name": "@modyo/cli",
"version": "3.5.2",
"description": "Modyo CLI Command line to expose local development tools",
"keywords": [
"modyo",
"widgets",
"cli",
"spa",
"oclif"
],
"homepage": "https://github.com/modyo/modyo-cli/",
"bugs": "https://github.com/modyo/modyo-cli/issues",
"repository": {
"type": "git",
"url": "https://github.com/modyo/modyo-cli.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": {
"name": "Modyo Team",
"email": "support@modyo.com",
"url": "https://modyo.com"
},
"contributors": [
{
"name": "Pablo Ortega",
"email": "portega@modyo.com",
"url": "https://modyo.com"
},
{
"name": "Jorge Saud",
"email": "jsaud@modyo.com",
"url": "https://modyo.com"
},
{
"name": "Roberto Rivera",
"email": "rrivera@modyo.com",
"url": "https://modyo.com"
},
{
"name": "Abraham José González Barboza",
"email": "agonzalez@modyo.com",
"url": "https://modyo.com"
},
{
"name": "Eduard Fabián Barón Gutiérrez",
"email": "ebaron@modyo.com",
"url": "https://modyo.com"
},
{
"name": "Johann Felipe Rojas Pineda",
"email": "jrojas@modyo.com",
"url": "https://modyo.com"
}
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"modyo-cli": "./bin/run"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"coverage": "nyc --extension .ts mocha --config .mocharc.js",
"lint": "eslint . --ext .ts",
"prepack": "npm run build && oclif manifest",
"postpack": "shx rm -f oclif.manifest.json",
"prepare": "husky install",
"test": "mocha --config .mocharc.js -s=50",
"posttest": "eslint . --ext .ts",
"version": "oclif readme",
"readme": "oclif readme"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"dependencies": {
"@oclif/core": "^2.7.1",
"@oclif/plugin-autocomplete": "^0.3.0",
"@oclif/plugin-help": "^5.2.8",
"@oclif/plugin-plugins": "^2.4.3",
"@oclif/plugin-version": "^1.1.3",
"@types/fs-extra": "^11.0.1",
"adm-zip": "^0.5.9",
"archiver": "^5.3.1",
"axios": "^1.6.8",
"cheerio": "1.0.0-rc.12",
"debug": "^4.3.4",
"dotenv": "^9.0.2",
"emoji-regex": "^9.2.2",
"form-data": "^4.0.0",
"fs-extra": "^11.1.1",
"mock-spawn": "^0.2.6",
"open": "^8.4.2",
"stream": "^0.0.2",
"tmp-promise": "^3.0.3"
},
"devDependencies": {
"@oclif/test": "^2.3.11",
"@types/adm-zip": "^0.4.34",
"@types/archiver": "^5.3.2",
"@types/chai": "^4.3.3",
"@types/cheerio": "^0.22.31",
"@types/debug": "^4.1.8",
"@types/mocha": "^9.1.1",
"@types/node": "^16.18.18",
"@types/sinon": "^10.0.13",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@typescript-eslint/typescript-estree": "^5.43.0",
"chai": "^4.3.6",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-xo-space": "^0.32.0",
"eslint-plugin-functional": "^4.4.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^42.0.0",
"fancy-test": "^2.0.15",
"globby": "^11.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.2.0",
"mocha-suppress-logs": "^0.3.1",
"mock-spawn": "^0.2.6",
"nock": "^13.3.0",
"nyc": "^15.1.0",
"oclif": "^3.7.2",
"shx": "^0.3.4",
"sinon": "^14.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"tsutils": "^3.21.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14.0.0"
},
"preferGlobal": true,
"oclif": {
"bin": "modyo-cli",
"dirname": "modyo-cli",
"commands": "./lib/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete",
"@oclif/plugin-version"
],
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v"
]
}
}