package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "name": "appium-webdriveragent",
  3. "version": "10.0.0",
  4. "description": "Package bundling WebDriverAgent",
  5. "main": "./build/index.js",
  6. "types": "./build/index.d.ts",
  7. "scripts": {
  8. "build": "tsc -b",
  9. "dev": "npm run build -- --watch",
  10. "clean": "npm run build -- --clean",
  11. "lint": "eslint .",
  12. "format": "prettier -w ./lib",
  13. "lint:fix": "npm run lint -- --fix",
  14. "prepare": "npm run build",
  15. "version": "npm run sync-wda-version",
  16. "test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.js\"",
  17. "e2e-test": "mocha --exit --timeout 10m \"./test/functional/**/*-specs.js\"",
  18. "bundle": "npm run bundle:ios && npm run bundle:tv",
  19. "bundle:ios": "TARGET=runner SDK=sim node ./Scripts/build-webdriveragent.js",
  20. "bundle:tv": "TARGET=tv_runner SDK=tv_sim node ./Scripts/build-webdriveragent.js",
  21. "fetch-prebuilt-wda": "node ./Scripts/fetch-prebuilt-wda.js",
  22. "sync-wda-version": "node ./scripts/update-wda-version.js --package-version=${npm_package_version} && git add WebDriverAgentLib/Info.plist"
  23. },
  24. "engines": {
  25. "node": "^20.19.0 || ^22.12.0 || >=24.0.0",
  26. "npm": ">=10"
  27. },
  28. "prettier": {
  29. "bracketSpacing": false,
  30. "printWidth": 100,
  31. "singleQuote": true
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "git+https://github.com/appium/WebDriverAgent.git"
  36. },
  37. "keywords": [
  38. "Appium",
  39. "iOS",
  40. "WebDriver",
  41. "Selenium",
  42. "WebDriverAgent"
  43. ],
  44. "author": "Appium Contributors",
  45. "license": "Apache-2.0",
  46. "bugs": {
  47. "url": "https://github.com/appium/WebDriverAgent/issues"
  48. },
  49. "homepage": "https://github.com/appium/WebDriverAgent#readme",
  50. "devDependencies": {
  51. "@appium/eslint-config-appium-ts": "^2.0.0-rc.1",
  52. "@appium/test-support": "^4.0.0-rc.1",
  53. "@appium/tsconfig": "^1.0.0-rc.1",
  54. "@appium/types": "^1.0.0-rc.1",
  55. "@semantic-release/changelog": "^6.0.1",
  56. "@semantic-release/git": "^10.0.1",
  57. "@types/bluebird": "^3.5.38",
  58. "@types/lodash": "^4.14.196",
  59. "@types/mocha": "^10.0.1",
  60. "@types/node": "^24.0.0",
  61. "appium-xcode": "^6.0.0",
  62. "chai": "^5.1.1",
  63. "chai-as-promised": "^8.0.0",
  64. "conventional-changelog-conventionalcommits": "^9.0.0",
  65. "node-simctl": "^8.0.0",
  66. "mocha": "^11.0.1",
  67. "prettier": "^3.0.0",
  68. "semantic-release": "^24.0.0",
  69. "semver": "^7.3.7",
  70. "sinon": "^21.0.0",
  71. "ts-node": "^10.9.1",
  72. "typescript": "^5.4.2"
  73. },
  74. "dependencies": {
  75. "@appium/base-driver": "^10.0.0-rc.1",
  76. "@appium/strongbox": "^1.0.0-rc.1",
  77. "@appium/support": "^7.0.0-rc.1",
  78. "appium-ios-device": "^3.0.0",
  79. "appium-ios-simulator": "^7.0.0",
  80. "async-lock": "^1.0.0",
  81. "asyncbox": "^3.0.0",
  82. "axios": "^1.4.0",
  83. "bluebird": "^3.5.5",
  84. "lodash": "^4.17.11",
  85. "source-map-support": "^0.x",
  86. "teen_process": "^3.0.0"
  87. },
  88. "files": [
  89. "index.ts",
  90. "lib",
  91. "build/index.*",
  92. "build/lib",
  93. "Scripts/build.sh",
  94. "Scripts/fetch-prebuilt-wda.js",
  95. "Scripts/build-webdriveragent.js",
  96. "Configurations",
  97. "PrivateHeaders",
  98. "WebDriverAgent.xcodeproj",
  99. "WebDriverAgentLib",
  100. "WebDriverAgentRunner",
  101. "WebDriverAgentTests",
  102. "XCTWebDriverAgentLib",
  103. "CHANGELOG.md"
  104. ]
  105. }