mirror of
https://github.com/appium/appium.git
synced 2026-02-20 10:20:05 -06:00
71 lines
1.5 KiB
JSON
71 lines
1.5 KiB
JSON
{
|
|
"name": "@appium/storage-plugin",
|
|
"version": "0.1.3",
|
|
"description": "Server-side storage plugin",
|
|
"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": "^6.1.1",
|
|
"async-lock": "1.4.1",
|
|
"bluebird": "3.7.2",
|
|
"lodash": "4.17.21",
|
|
"lru-cache": "11.1.0",
|
|
"rimraf": "6.0.1",
|
|
"source-map-support": "0.5.21",
|
|
"ws": "8.18.2"
|
|
},
|
|
"peerDependencies": {
|
|
"appium": "^2.0.0 || ^3.0.0-beta.0"
|
|
},
|
|
"engines": {
|
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
|
|
"npm": ">=8"
|
|
},
|
|
"appium": {
|
|
"pluginName": "storage",
|
|
"mainClass": "StoragePlugin"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"tags": [
|
|
"appium"
|
|
]
|
|
}
|