package.json 3.4 KB

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