mirror of
https://github.com/appium/appium.git
synced 2026-02-25 12:50:16 -06:00
- also convert script to ESM for fun - transpiles appium just to be sure -- this generates the base schema `.json` file
132 lines
5.0 KiB
JSON
132 lines
5.0 KiB
JSON
{
|
|
"name": "appium-monorepo",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "Automation for Apps.",
|
|
"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"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"author": "https://github.com/appium",
|
|
"scripts": {
|
|
"build": "lerna exec gulp transpile",
|
|
"clean": "lerna clean -y && npx rimraf node_modules package-lock.json \"packages/*/build\"",
|
|
"coverage": "lerna exec gulp coveralls",
|
|
"dev": "lerna exec --parallel -- gulp dev --no-notif",
|
|
"doctor": "node ./packages/doctor",
|
|
"e2e-test": "lerna exec \"gulp e2e-test\"",
|
|
"generate-docs": "lerna run --scope=appium generate-docs",
|
|
"generate-schema-declarations": "node ./scripts/generate-schema-declarations.mjs",
|
|
"postinstall": "lerna bootstrap && lerna exec --parallel \"gulp prepublish\"",
|
|
"install-fake-driver": "lerna run --scope=appium install-fake-driver",
|
|
"lint": "lerna exec --parallel \"gulp lint\" && lerna run --scope=@appium/eslint-config-appium lint",
|
|
"lint:fix": "eslint --fix .",
|
|
"precommit-lint": "lint-staged",
|
|
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
|
|
"reinstall": "npm run clean && npm install",
|
|
"start": "node ./packages/appium",
|
|
"sync-pkgs": "npm run sync-pkgs:appium-readme && npm run sync-pkgs:common-fields && npm run sync-pkgs:keywords",
|
|
"sync-pkgs:appium-readme": "sync-monorepo-packages --force --no-package-json --packages=packages/appium README.md",
|
|
"sync-pkgs:common-fields": "sync-monorepo-packages --fields=author,license,repository,bugs,homepage,engines",
|
|
"sync-pkgs:keywords": "sync-monorepo-packages --field=keywords --packages='packages/*' --packages='!packages/eslint-config-appium'",
|
|
"test": "lerna exec \"gulp once\"",
|
|
"test:appium": "lerna exec --scope=appium \"gulp once\"",
|
|
"test:base-driver": "lerna exec --scope=@appium/base-driver \"gulp once\"",
|
|
"test:doctor": "lerna exec --scope=@appium/doctor \"gulp once\"",
|
|
"test:e2e:appium": "lerna exec --scope=appium \"gulp e2e-test\"",
|
|
"test:e2e:base-driver": "lerna exec --scope=@appium/base-driver \"gulp e2e-test\"",
|
|
"test:e2e:fake-driver": "lerna exec --scope=@appium/fake-driver \"gulp e2e-test\"",
|
|
"test:e2e:gulp-plugins": "lerna exec --scope=@appium/gulp-plugins \"gulp e2e-test\"",
|
|
"test:e2e:support": "lerna exec --scope=@appium/support \"gulp e2e-test\"",
|
|
"test:fake-driver": "lerna exec --scope=@appium/fake-driver \"gulp once\"",
|
|
"test:gulp-plugins": "lerna exec --scope=@appium/gulp-plugins \"gulp once\"",
|
|
"test:support": "lerna exec --scope=@appium/support \"gulp once\"",
|
|
"test:test-support": "lerna exec --scope=@appium/test-support \"gulp once\"",
|
|
"preversion": "npm run sync-pkgs && npm run generate-schema-declarations && git add -A packages/appium/README.md packages/*/package.json",
|
|
"watch": "lerna exec watch"
|
|
},
|
|
"pre-commit": [
|
|
"precommit-msg",
|
|
"precommit-lint"
|
|
],
|
|
"lint-staged": {
|
|
"*.js": "eslint --fix",
|
|
"./packages/appium/lib/schema/appium-config-schema.js": "npm run generate-schema-declarations"
|
|
},
|
|
"devDependencies": {
|
|
"@appium/eslint-config-appium": "file:./packages/eslint-config-appium",
|
|
"@appium/fake-plugin": "1.3.0",
|
|
"@babel/core": "7.16.0",
|
|
"@babel/eslint-parser": "7.16.3",
|
|
"@babel/plugin-transform-runtime": "7.16.0",
|
|
"@babel/preset-env": "7.16.0",
|
|
"@babel/register": "7.16.0",
|
|
"@babel/runtime": "7.16.3",
|
|
"@types/argparse": "2.0.10",
|
|
"@types/bluebird": "3.5.36",
|
|
"@types/chai": "4.2.22",
|
|
"@types/chai-as-promised": "7.1.4",
|
|
"@types/fancy-log": "1.3.1",
|
|
"@types/gulp": "4.0.9",
|
|
"@types/json-schema": "7.0.9",
|
|
"@types/mocha": "9.0.0",
|
|
"@types/node": "16.11.7",
|
|
"@types/sinon": "10.0.6",
|
|
"@types/sinon-chai": "3.2.5",
|
|
"@types/through2": "2.0.36",
|
|
"appium-base-driver": "7.11.0",
|
|
"asyncbox": "2.9.2",
|
|
"babel-plugin-istanbul": "6.1.1",
|
|
"babel-plugin-source-map-support": "2.1.3",
|
|
"chai": "4.3.4",
|
|
"chai-as-promised": "7.1.1",
|
|
"chai-webdriverio-async": "2.6.0",
|
|
"colors": "1.4.0",
|
|
"eslint-find-rules": "4.0.0",
|
|
"fancy-log": "1.3.3",
|
|
"finalhandler": "1.1.2",
|
|
"get-port": "5.1.1",
|
|
"gulp": "4.0.2",
|
|
"handlebars": "4.7.7",
|
|
"json-schema-to-typescript": "10.1.5",
|
|
"lerna": "4.0.0",
|
|
"lint-staged": "11.2.6",
|
|
"mjpeg-server": "0.3.1",
|
|
"mocha": "9.1.3",
|
|
"pre-commit": "1.2.2",
|
|
"querystring": "0.2.1",
|
|
"rewiremock": "3.14.3",
|
|
"serve-static": "1.14.1",
|
|
"sinon": "12.0.1",
|
|
"sinon-chai": "3.7.0",
|
|
"sync-monorepo-packages": "0.3.4",
|
|
"through2": "4.0.2",
|
|
"type-fest": "2.5.3",
|
|
"validate.js": "0.13.1",
|
|
"webdriverio": "6.12.1",
|
|
"yaml-js": "0.3.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=12",
|
|
"npm": ">=6"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|