| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- {
- "name": "appium-webdriveragent",
- "version": "10.0.0",
- "description": "Package bundling WebDriverAgent",
- "main": "./build/index.js",
- "types": "./build/index.d.ts",
- "scripts": {
- "build": "tsc -b",
- "dev": "npm run build -- --watch",
- "clean": "npm run build -- --clean",
- "lint": "eslint .",
- "format": "prettier -w ./lib",
- "lint:fix": "npm run lint -- --fix",
- "prepare": "npm run build",
- "version": "npm run sync-wda-version",
- "test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.js\"",
- "e2e-test": "mocha --exit --timeout 10m \"./test/functional/**/*-specs.js\"",
- "bundle": "npm run bundle:ios && npm run bundle:tv",
- "bundle:ios": "TARGET=runner SDK=sim node ./Scripts/build-webdriveragent.js",
- "bundle:tv": "TARGET=tv_runner SDK=tv_sim node ./Scripts/build-webdriveragent.js",
- "fetch-prebuilt-wda": "node ./Scripts/fetch-prebuilt-wda.js",
- "sync-wda-version": "node ./scripts/update-wda-version.js --package-version=${npm_package_version} && git add WebDriverAgentLib/Info.plist"
- },
- "engines": {
- "node": "^20.19.0 || ^22.12.0 || >=24.0.0",
- "npm": ">=10"
- },
- "prettier": {
- "bracketSpacing": false,
- "printWidth": 100,
- "singleQuote": true
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/appium/WebDriverAgent.git"
- },
- "keywords": [
- "Appium",
- "iOS",
- "WebDriver",
- "Selenium",
- "WebDriverAgent"
- ],
- "author": "Appium Contributors",
- "license": "Apache-2.0",
- "bugs": {
- "url": "https://github.com/appium/WebDriverAgent/issues"
- },
- "homepage": "https://github.com/appium/WebDriverAgent#readme",
- "devDependencies": {
- "@appium/eslint-config-appium-ts": "^2.0.0-rc.1",
- "@appium/test-support": "^4.0.0-rc.1",
- "@appium/tsconfig": "^1.0.0-rc.1",
- "@appium/types": "^1.0.0-rc.1",
- "@semantic-release/changelog": "^6.0.1",
- "@semantic-release/git": "^10.0.1",
- "@types/bluebird": "^3.5.38",
- "@types/lodash": "^4.14.196",
- "@types/mocha": "^10.0.1",
- "@types/node": "^24.0.0",
- "appium-xcode": "^6.0.0",
- "chai": "^5.1.1",
- "chai-as-promised": "^8.0.0",
- "conventional-changelog-conventionalcommits": "^9.0.0",
- "node-simctl": "^8.0.0",
- "mocha": "^11.0.1",
- "prettier": "^3.0.0",
- "semantic-release": "^24.0.0",
- "semver": "^7.3.7",
- "sinon": "^21.0.0",
- "ts-node": "^10.9.1",
- "typescript": "^5.4.2"
- },
- "dependencies": {
- "@appium/base-driver": "^10.0.0-rc.1",
- "@appium/strongbox": "^1.0.0-rc.1",
- "@appium/support": "^7.0.0-rc.1",
- "appium-ios-device": "^3.0.0",
- "appium-ios-simulator": "^7.0.0",
- "async-lock": "^1.0.0",
- "asyncbox": "^3.0.0",
- "axios": "^1.4.0",
- "bluebird": "^3.5.5",
- "lodash": "^4.17.11",
- "source-map-support": "^0.x",
- "teen_process": "^3.0.0"
- },
- "files": [
- "index.ts",
- "lib",
- "build/index.*",
- "build/lib",
- "Scripts/build.sh",
- "Scripts/fetch-prebuilt-wda.js",
- "Scripts/build-webdriveragent.js",
- "Configurations",
- "PrivateHeaders",
- "WebDriverAgent.xcodeproj",
- "WebDriverAgentLib",
- "WebDriverAgentRunner",
- "WebDriverAgentTests",
- "XCTWebDriverAgentLib",
- "CHANGELOG.md"
- ]
- }
|