mirror of
https://github.com/appium/appium.git
synced 2026-02-21 10:49:52 -06:00
61 lines
1.6 KiB
JSON
61 lines
1.6 KiB
JSON
{
|
|
"name": "@appium/universal-xml-plugin",
|
|
"version": "1.0.0-beta.15",
|
|
"description": "Appium plugin for making XML source and XPath queries the same across iOS and Android",
|
|
"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": "git+https://github.com/appium/appium-plugins.git"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"author": "https://github.com/appium",
|
|
"types": "./build/lib/plugin.d.ts",
|
|
"files": [
|
|
"index.js",
|
|
"build",
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"build": "babel lib --source-maps --root-mode=upward --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 ./build/lib/index.js",
|
|
"test:unit": "mocha \"./test/unit/**/*.spec.js\""
|
|
},
|
|
"dependencies": {
|
|
"@types/xmldom": "0.1.31",
|
|
"@xmldom/xmldom": "0.8.6",
|
|
"fast-xml-parser": "3.21.1",
|
|
"source-map-support": "0.5.21",
|
|
"xpath": "0.0.32"
|
|
},
|
|
"peerDependencies": {
|
|
"appium": "^2.0.0-beta.35"
|
|
},
|
|
"appium": {
|
|
"pluginName": "universal-xml",
|
|
"mainClass": "UniversalXMLPlugin"
|
|
},
|
|
"gitHead": "5c7af8ee73078018e4ec52fccf19fe3f77249d72",
|
|
"engines": {
|
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
|
|
"npm": ">=8"
|
|
}
|
|
}
|