{ "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", "debug": "^4.1.1", "nopt": "^4.0.1", "plist": "^3.0.1", "simctl": "^2.0.0" }, "devDependencies": { "@babel/compat-data": "^7.21.4", "@babel/core": "^7.5.5", "@babel/preset-env": "^7.5.5", "@babel/runtime": "^7.5.5", "@oclif/dev-cli": "^1.22.2", "@oclif/test": "^1.2.5", "acorn": "^7.0.0", "babel-jest": "^24.9.0", "eol": "^0.9.1", "eslint": "8", "eslint-config-oclif": "^4", "eslint-config-standard": "^17", "eslint-plugin-jest": "^27", "eslint-plugin-node": "^11", "eslint-plugin-promise": "^6", "jest": "^29", "jest-junit": "^16", "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": [ "/jest.setup.js" ], "reporters": [ "default", "jest-junit" ], "testEnvironment": "node", "setupFilesAfterEnv": [ "./test/jest.setup.js" ] }, "publishConfig": { "access": "public" } }