{
  "name": "cli-driver",
  "version": "0.2.7",
  "description": "Automate your complex CLI applications, like webdriver but for the command line",
  "main": "lib/src/index.js",
  "types": "lib/src/index.d.ts",
  "scripts": {
    "build": "tsc",
    "watch": "tsc --watch",
    "test": "npm run test-critical",
    "test-all-js": "npm run clean && npm run build && node node_modules/jasmine/bin/jasmine.js --config=./spec/support/jasmine-all-js.json",
    "test-critical": "ts-node node_modules/jasmine/bin/jasmine --config=./spec/support/jasmine-critical.json",
    "test-all": "ts-node node_modules/jasmine/bin/jasmine --config=./spec/support/jasmine-all.json",
    "test-critical-coverage-html-report": "rm -rf coverage; nyc --clean -r lcov -e .ts -x \"*Spec.ts\" ts-node node_modules/jasmine/bin/jasmine --config=./spec/support/jasmine-critical.json",
    "test-critical-coverage-report": "nyc --clean -r json -e .ts -x \"*Spec.ts\" ts-node node_modules/jasmine/bin/jasmine --config=./spec/support/jasmine-critical.json",
    "docs": "tsc && typedoc --options typedoc.ts && npx markdown-toc README.md -i && rm -rf ../../docs/doc-assets && cp -r ../../doc-assets ../../docs && git add ../../docs/doc-assets",
    "clean": "rm -rf lib tmp*",
    "help": "node -p \"'\\nHelp on this package\\'s npm scripts:\\n'+JSON.stringify(JSON.parse(require('shelljs').cat('package.json').toString())['scripts-description'], null, 2)+'\\n'\"",
    "lint": " npx ts-refactor format \"src/**/*.ts*\" \"spec/**/*.ts*\" ./formatCodeSettings.json --dontAsk",
    "all": "npm run clean && npm run lint && npm run build && npm run test-all && npm run test-all-js && npm run docs",
    "all-publish": "npm run all && git commit -a -m \"version patch\" && npm version patch && npm publish",
    "all-from-scratch": "rm -rf node_modules/ package-lock.json && ncu -u && npm i && npm run all"
  },
  "keywords": [
    "automation",
    "CLI",
    "command line",
    "web-driver",
    "test",
    "CI"
  ],
  "author": "Sebastián Gurin",
  "license": "MIT",
  "dependencies": {
    "@types/node": "^12.7.11",
    "ansi-escape-sequences": "git+https://github.com/cancerberoSgx/ansi-escape-sequences.git#types",
    "misc-utils-of-mine-generic": "^0.2.35",
    "node-keys": "^0.1.5",
    "node-pty": "git+https://github.com/cancerberoSgx/node-pty.git"
  },
  "devDependencies": {
    "@types/jasmine": "^3.4.2",
    "shelljs": "^0.8.3",
    "@types/shelljs": "^0.8.5",
    "jasmine": "^3.5.0",
    "ts-refactor": "0.0.11",
    "markdown-toc": "^1.2.0",
    "ts-node": "^8.4.1",
    "typescript": "^3.6.3"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/cancerberoSgx/cli-driver.git"
  },
  "bugs": {
    "url": "https://github.com/cancerberoSgx/cli-driver"
  }
}
