{
  "name": "ios-sim",
  "version": "9.0.0",
  "preferGlobal": true,
  "description": "launch iOS apps into the iOS Simulator from the command line (Xcode 8.0+)",
  "main": "main.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/ios-control/ios-sim"
  },
  "engines": {
    "node": ">=8"
  },
  "keywords": [
    "ios-sim",
    "iOS Simulator"
  ],
  "bin": {
    "ios-sim": "./bin/ios-sim"
  },
  "bugs": {
    "url": "https://github.com/ios-control/ios-sim/issues"
  },
  "author": "Shazron Abdullah",
  "license": "Apache-2.0",
  "files": [
    "/oclif.manifest.json",
    "/src",
    "/bin"
  ],
  "oclif": {
    "commands": "./src/commands",
    "bin": "ios-sim",
    "devPlugins": [
      "@oclif/plugin-help"
    ]
  },
  "dependencies": {
    "@oclif/command": "^1.5.18",
    "@oclif/config": "^1.13.3",
    "@oclif/errors": "^1.2.2",
    "@oclif/plugin-help": "^2.2.1",
    "bplist-parser": "^0.2.0",
    "nopt": "^4.0.1",
    "debug": "^4.1.1",
    "plist": "^3.0.1",
    "simctl": "^2.0.0"
  },
  "devDependencies": {
    "@babel/core": "^7.5.5",
    "@babel/preset-env": "^7.5.5",
    "@oclif/dev-cli": "^1.22.2",
    "@oclif/test": "^1.2.5",
    "acorn": "^7.0.0",
    "babel-jest": "^24.9.0",
    "@babel/runtime": "^7.5.5",
    "codecov": "^3.5.0",
    "eslint": "^6.2.2",
    "eslint-config-oclif": "^3.1.0",
    "eslint-config-standard": "^14.0.1",
    "eslint-plugin-import": "^2.18.2",
    "eslint-plugin-jest": "^22.15.2",
    "eslint-plugin-node": "^9.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^4.0.1",
    "jest": "^24.9.0",
    "jest-junit": "^8.0.0",
    "mock-fs": "^4.10.1",
    "stdout-stderr": "^0.1.9"
  },
  "scripts": {
    "test": "npm run unit-tests",
    "posttest": "npm run eslint",
    "unit-tests": "jest --ci",
    "eslint": "eslint src test",
    "prepack": "oclif-dev manifest && oclif-dev readme",
    "postpack": "rm -f oclif.manifest.json",
    "version": "oclif-dev readme && git add README.md"
  },
  "jest": {
    "collectCoverage": true,
    "collectCoverageFrom": [
      "src/**/*.js"
    ],
    "testPathIgnorePatterns": [
      "<rootDir>/jest.setup.js"
    ],
    "reporters": [
      "default",
      "jest-junit"
    ],
    "testEnvironment": "node",
    "setupFilesAfterEnv": [
      "./test/jest.setup.js"
    ]
  },
  "publishConfig": {
    "access": "public"
  }
}
