64 lines
2.0 KiB
JSON
64 lines
2.0 KiB
JSON
{
|
|
"name": "@woocommerce/e2e-utils",
|
|
"version": "0.2.0",
|
|
"description": "End-To-End (E2E) test utils for WooCommerce",
|
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/e2e-utils/README.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/woocommerce/woocommerce.git"
|
|
},
|
|
"license": "GPL-3.0+",
|
|
"engines": {
|
|
"node": "^16.14.1",
|
|
"pnpm": "^8.6.7"
|
|
},
|
|
"main": "build/index.js",
|
|
"module": "build-module/index.js",
|
|
"dependencies": {
|
|
"@automattic/puppeteer-utils": "github:Automattic/puppeteer-utils#0f3ec50",
|
|
"@wordpress/deprecated": "wp-6.0",
|
|
"@wordpress/e2e-test-utils": "wp-6.0",
|
|
"config": "3.3.7",
|
|
"fishery": "^1.2.0"
|
|
},
|
|
"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",
|
|
"@typescript-eslint/eslint-plugin": "^5.54.0",
|
|
"@typescript-eslint/parser": "^5.54.0",
|
|
"@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",
|
|
"eslint": "^8.32.0",
|
|
"eslint-plugin-jest": "23.20.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@woocommerce/api": "^0.2.0"
|
|
},
|
|
"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",
|
|
"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"
|
|
},
|
|
"lint-staged": {
|
|
"*.(t|j)s?(x)": [
|
|
"pnpm lint:fix"
|
|
]
|
|
}
|
|
}
|