Files
appium/packages/fake-plugin/package.json
T
Christopher Hiller a1dbe6c43e chore!: set engines to minimum Node.js v14.17.0
BREAKING CHANGE: Appium now supports version range `^14.17.0 || ^16.13.0 || >=18.0.0`
2022-12-01 16:38:18 -08:00

73 lines
1.7 KiB
JSON

{
"name": "@appium/fake-plugin",
"version": "2.1.3",
"description": "A fake Appium 2.0 plugin",
"homepage": "https://appium.io",
"bugs": {
"url": "https://github.com/appium/appium/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/appium/appium.git",
"directory": "packages/fake-plugin"
},
"license": "Apache-2.0",
"author": "https://github.com/appium",
"main": "./build/index.js",
"directories": {
"lib": "./lib"
},
"files": [
"index.js",
"lib",
"build"
],
"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 ./index.js",
"test:unit": "mocha \"./test/unit/**/*.spec.js\""
},
"dependencies": {
"@appium/base-plugin": "^1.10.5",
"@appium/support": "^2.61.1",
"@types/bluebird": "3.5.38",
"bluebird": "3.7.2",
"lodash": "4.17.21",
"source-map-support": "0.5.21"
},
"peerDependencies": {
"appium": "^2.0.0-beta.35"
},
"engines": {
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
"npm": ">=8"
},
"appium": {
"pluginName": "fake",
"mainClass": "FakePlugin",
"scripts": {
"fake-error": "./build/lib/scripts/fake-error.js",
"fake-success": "./build/lib/scripts/fake-success.js"
}
},
"gitHead": "5c7af8ee73078018e4ec52fccf19fe3f77249d72",
"tags": [
"appium"
],
"keywords": [
"automation",
"javascript",
"selenium",
"webdriver",
"ios",
"android",
"firefoxos",
"testing"
]
}