mirror of
https://github.com/appium/appium.git
synced 2026-04-25 04:48:42 -05:00
a1dbe6c43e
BREAKING CHANGE: Appium now supports version range `^14.17.0 || ^16.13.0 || >=18.0.0`
70 lines
1.6 KiB
JSON
70 lines
1.6 KiB
JSON
{
|
|
"name": "@appium/driver-test-support",
|
|
"version": "0.2.1",
|
|
"description": "Test utilities for Appium drivers",
|
|
"keywords": [
|
|
"automation",
|
|
"javascript",
|
|
"selenium",
|
|
"webdriver",
|
|
"ios",
|
|
"android",
|
|
"firefoxos",
|
|
"testing"
|
|
],
|
|
"homepage": "https://appium.io",
|
|
"bugs": {
|
|
"url": "https://github.com/appium/appium/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/appium/appium.git",
|
|
"directory": "packages/driver-test-support"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"author": "https://github.com/appium",
|
|
"main": "index.js",
|
|
"directories": {
|
|
"lib": "lib"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib",
|
|
"build"
|
|
],
|
|
"scripts": {
|
|
"build": "babel lib --root-mode=upward --source-maps --out-dir=build/lib",
|
|
"dev": "npm run build -- --watch",
|
|
"fix": "npm run lint -- --fix",
|
|
"lint": "eslint -c ../../.eslintrc --ignore-path ../../.eslintignore .",
|
|
"prepare": "npm run build",
|
|
"test": "npm run test:unit",
|
|
"test:smoke": "node ./index.js",
|
|
"test:unit": "mocha \"test/unit/**/*.spec.js\""
|
|
},
|
|
"types": "./build/lib/index.d.ts",
|
|
"dependencies": {
|
|
"@appium/types": "^0.5.0",
|
|
"@types/lodash": "4.14.191",
|
|
"axios": "1.2.0",
|
|
"bluebird": "3.7.2",
|
|
"chai": "4.3.7",
|
|
"get-port": "5.1.1",
|
|
"lodash": "4.17.21",
|
|
"sinon": "15.0.0",
|
|
"source-map-support": "0.5.21",
|
|
"type-fest": "3.3.0"
|
|
},
|
|
"peerDependencies": {
|
|
"appium": "^2.0.0-beta.43",
|
|
"mocha": "*"
|
|
},
|
|
"engines": {
|
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
|
|
"npm": ">=8"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|