93 lines
3.0 KiB
JSON
93 lines
3.0 KiB
JSON
{
|
|
"name": "@woocommerce/e2e-environment",
|
|
"version": "0.3.0",
|
|
"description": "WooCommerce End to End Testing Environment Configuration.",
|
|
"author": "Automattic",
|
|
"license": "GPL-3.0-or-later",
|
|
"keywords": [
|
|
"wordpress",
|
|
"woocommerce",
|
|
"e2e",
|
|
"puppeteer"
|
|
],
|
|
"engines": {
|
|
"node": "^16.14.1",
|
|
"pnpm": "^8.6.7"
|
|
},
|
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/e2e-environment/README.md",
|
|
"bugs": {
|
|
"url": "https://github.com/woocommerce/woocommerce/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/woocommerce/woocommerce.git"
|
|
},
|
|
"main": "index.js",
|
|
"module": "build-module/index.js",
|
|
"dependencies": {
|
|
"@automattic/puppeteer-utils": "github:Automattic/puppeteer-utils#0f3ec50",
|
|
"@jest/test-sequencer": "^27.5.1",
|
|
"@slack/web-api": "^6.1.0",
|
|
"@woocommerce/api": "^0.2.0",
|
|
"@wordpress/e2e-test-utils": "^4.16.1",
|
|
"@wordpress/jest-preset-default": "^7.1.3",
|
|
"app-root-path": "^3.0.0",
|
|
"commander": "4.1.1",
|
|
"config": "3.3.7",
|
|
"jest": "^27.5.1",
|
|
"jest-circus": "27.5.1",
|
|
"jest-each": "27.5.1",
|
|
"jest-puppeteer": "^5.0.4",
|
|
"node-stream-zip": "^1.13.6",
|
|
"puppeteer": "2.1.1",
|
|
"readline-sync": "^1.4.10",
|
|
"request": "^2.88.2",
|
|
"sprintf-js": "^1.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.12.8",
|
|
"@babel/core": "7.12.9",
|
|
"@babel/plugin-proposal-async-generator-functions": "^7.16.4",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
|
|
"@babel/plugin-transform-react-jsx": "^7.16.0",
|
|
"@babel/plugin-transform-runtime": "^7.16.4",
|
|
"@babel/polyfill": "7.12.1",
|
|
"@babel/preset-env": "7.12.7",
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
|
"@woocommerce/internal-e2e-builds": "workspace:*",
|
|
"@wordpress/babel-plugin-import-jsx-pragma": "1.1.3",
|
|
"@wordpress/babel-preset-default": "3.0.2",
|
|
"@wordpress/browserslist-config": "wp-6.0",
|
|
"ndb": "^1.1.5",
|
|
"semver": "^7.3.2"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"turbo:build": "pnpm run clean && pnpm run compile",
|
|
"build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name",
|
|
"clean": "rm -rf ./build ./build-module",
|
|
"compile": "e2e-builds",
|
|
"prepack": "pnpm run build",
|
|
"docker:up": "./bin/docker-compose.sh up",
|
|
"docker:wait": "bash ./bin/wait-for-build.sh",
|
|
"docker:down": "./bin/docker-compose.sh down",
|
|
"docker:clear-all": "docker rmi --force $(docker images -q)",
|
|
"docker:ssh": "docker exec -it $(node utils/get-app-name.js)_wordpress-www /bin/bash",
|
|
"test:e2e": "bash ./bin/wait-for-build.sh && ./bin/e2e-test-integration.js",
|
|
"test:e2e-debug": "bash ./bin/wait-for-build.sh && ./bin/e2e-test-integration.js --dev --debug",
|
|
"test:e2e-dev": "bash ./bin/wait-for-build.sh && ./bin/e2e-test-integration.js --dev",
|
|
"lint": "eslint --output-file eslint_report.json --format json --ext=js,ts,tsx src",
|
|
"lint:fix": "eslint --output-file eslint_report.json --format json --ext=js,ts,tsx src --fix"
|
|
},
|
|
"bin": {
|
|
"wc-e2e": "bin/wc-e2e.sh"
|
|
},
|
|
"lint-staged": {
|
|
"*.(t|j)s?(x)": [
|
|
"pnpm lint:fix"
|
|
]
|
|
}
|
|
}
|