mirror of
https://github.com/appium/appium.git
synced 2026-02-22 11:19:06 -06:00
- appium@3.0.2 - @appium/base-driver@10.0.1 - @appium/base-plugin@3.0.2 - @appium/docutils@2.1.0 - @appium/driver-test-support@1.0.2 - @appium/eslint-config-appium-ts@2.0.2 - @appium/execute-driver-plugin@5.0.1 - @appium/fake-plugin@4.0.2 - @appium/images-plugin@4.0.1 - @appium/logger@2.0.1 - @appium/opencv@4.0.1 - @appium/plugin-test-support@1.0.1 - @appium/storage-plugin@1.0.1 - @appium/support@7.0.1 - @appium/test-support@4.0.1 - @appium/tsconfig@1.1.0 - @appium/types@1.0.1
71 lines
1.5 KiB
JSON
71 lines
1.5 KiB
JSON
{
|
|
"name": "@appium/storage-plugin",
|
|
"version": "1.0.1",
|
|
"description": "Server-side storage plugin for Appium",
|
|
"keywords": [
|
|
"automation",
|
|
"javascript",
|
|
"selenium",
|
|
"webdriver",
|
|
"ios",
|
|
"android",
|
|
"firefoxos",
|
|
"testing"
|
|
],
|
|
"homepage": "https://appium.io",
|
|
"bugs": {
|
|
"url": "https://github.com/appium/appium/issues"
|
|
},
|
|
"main": "./build/lib/index.js",
|
|
"types": "./build/lib/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/appium/appium.git",
|
|
"directory": "packages/storage-plugin"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"author": "https://github.com/appium",
|
|
"directories": {
|
|
"lib": "./lib"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"build",
|
|
"tsconfig.json",
|
|
"!build/tsconfig.tsbuildinfo"
|
|
],
|
|
"scripts": {
|
|
"test": "npm run test:unit",
|
|
"test:smoke": "node ./build/lib/index.js",
|
|
"test:unit": "mocha \"./test/unit/**/*.spec.*js\"",
|
|
"test:e2e": "mocha --timeout 20s --slow 10s \"./test/e2e/**/*.spec.*js\""
|
|
},
|
|
"dependencies": {
|
|
"@appium/support": "^7.0.1",
|
|
"async-lock": "1.4.1",
|
|
"bluebird": "3.7.2",
|
|
"lodash": "4.17.21",
|
|
"lru-cache": "11.2.1",
|
|
"rimraf": "6.0.1",
|
|
"source-map-support": "0.5.21",
|
|
"ws": "8.18.3"
|
|
},
|
|
"peerDependencies": {
|
|
"appium": "^3.0.0-beta.0"
|
|
},
|
|
"engines": {
|
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
"npm": ">=10"
|
|
},
|
|
"appium": {
|
|
"pluginName": "storage",
|
|
"mainClass": "StoragePlugin"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"tags": [
|
|
"appium"
|
|
]
|
|
}
|