{
  "name": "open-terminal",
  "version": "0.1.11",
  "description": "cross platform open terminal and run command",
  "sideEffects": false,
  "keywords": [
    "open-terminal",
    "open",
    "terminal",
    "cross",
    "platform"
  ],
  "homepage": "https://github.com/clayrisser/open-terminal",
  "bugs": {
    "url": "https://github.com/clayrisser/open-terminal/issues",
    "email": "email@clayrisser.com"
  },
  "license": "MIT",
  "author": {
    "name": "Clay Risser",
    "email": "email@clayrisser.com",
    "url": "https://clayrisser.com"
  },
  "files": [
    "es",
    "lib",
    "bin"
  ],
  "module": "es/index.js",
  "main": "lib/index.js",
  "bin": {
    "open-terminal": "bin/openTerminal.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/clayrisser/open-terminal"
  },
  "scripts": {
    "build": "make -s build",
    "clean": "make -s clean",
    "coverage": "make -s coverage",
    "format": "make -s format",
    "inc": "make -s inc",
    "lint": "make -s lint",
    "make": "make",
    "prepare": "make -s prepare",
    "purge": "make -s purge",
    "report": "make -s report",
    "spellcheck": "make -s spellcheck",
    "start": "make -s start",
    "test": "make -s test",
    "test:ui": "make test-ui",
    "test:watch": "make -s test-watch"
  },
  "dependencies": {
    "@babel/runtime": "^7.13.9",
    "core-js": "^3.9.1",
    "execa": "^5.0.0",
    "fs-extra": "^9.1.0",
    "node-pstree": "^0.0.10",
    "node-sigar": "^0.0.16",
    "ora": "^5.3.0",
    "uuid": "^8.3.2",
    "which": "^2.0.2"
  },
  "devDependencies": {
    "@babel/cli": "^7.13.0",
    "@babel/core": "^7.13.8",
    "@babel/node": "^7.13.0",
    "@babel/plugin-proposal-class-properties": "^7.13.0",
    "@babel/plugin-proposal-decorators": "^7.13.5",
    "@babel/plugin-proposal-optional-chaining": "^7.13.8",
    "@babel/plugin-transform-runtime": "^7.13.9",
    "@babel/preset-env": "^7.13.9",
    "@babel/preset-typescript": "^7.13.0",
    "@types/fs-extra": "^9.0.8",
    "@types/jest": "^26.0.20",
    "@types/uuid": "^8.3.0",
    "@types/which": "^2.0.0",
    "@typescript-eslint/eslint-plugin": "^4.16.1",
    "@typescript-eslint/parser": "^4.16.1",
    "babel-loader": "^8.2.2",
    "babel-plugin-inline-import": "^3.0.0",
    "babel-plugin-macros": "^3.0.1",
    "babel-plugin-module-resolver": "^4.1.0",
    "babel-plugin-transform-typescript-metadata": "^0.3.1",
    "cloc": "^2.7.0",
    "cspell": "^5.3.4",
    "eslint": "^7.21.0",
    "eslint-config-airbnb-typescript": "^12.3.1",
    "eslint-config-prettier": "^8.1.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-spellcheck": "^0.0.17",
    "jest": "^26.6.3",
    "jest-sonar-reporter": "^2.0.0",
    "lockfile-lint": "^4.6.2",
    "majestic": "^1.8.0",
    "prettier": "^2.2.1",
    "typescript": "^4.2.2",
    "webpack": "^5.24.3",
    "webpack-cli": "^4.5.0"
  },
  "engines": {
    "node": ">=6.0.0"
  },
  "eslintIgnore": [
    "dist",
    "es",
    "lib"
  ],
  "jest": {
    "testRegex": "((/(tests|__tests__)((/|/[^_.\n][^/\n]*(/[^_.\n][^/\n]+)*/)[^_.\n][^/\n]*))|((/|/.*/)(([^_.\n][^/\n]*.(spec|test))|(spec|test)))).[jt]sx?$",
    "testEnvironment": "node",
    "verbose": true,
    "testPathIgnorePatterns": [
      "<rootDir>/dist/",
      "<rootDir>/es/",
      "<rootDir>/lib/"
    ],
    "transformIgnorePatterns": [
      "\\.d\\.tsx?$"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>/tests/_setup.ts"
    ]
  },
  "jestSonar": {
    "reportPath": "node_modules/.tmp/reports",
    "reportFile": "test-report.xml",
    "indent": 4
  },
  "prettier": {
    "singleQuote": true,
    "trailingComma": "none"
  }
}
