2020-04-20 11:33:17 +00:00
|
|
|
{
|
2022-04-29 22:04:41 +00:00
|
|
|
"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+",
|
2022-09-26 22:30:52 +00:00
|
|
|
"engines": {
|
2023-04-25 06:49:30 +00:00
|
|
|
"node": "^16.14.1",
|
2023-07-18 02:27:18 +00:00
|
|
|
"pnpm": "^8.6.7"
|
2022-09-26 22:30:52 +00:00
|
|
|
},
|
2022-04-29 22:04:41 +00:00
|
|
|
"main": "build/index.js",
|
|
|
|
"module": "build-module/index.js",
|
|
|
|
"dependencies": {
|
|
|
|
"@automattic/puppeteer-utils": "github:Automattic/puppeteer-utils#0f3ec50",
|
2023-03-08 21:13:25 +00:00
|
|
|
"@wordpress/deprecated": "wp-6.0",
|
|
|
|
"@wordpress/e2e-test-utils": "wp-6.0",
|
2023-02-14 05:34:00 +00:00
|
|
|
"config": "3.3.7",
|
2022-04-29 22:04:41 +00:00
|
|
|
"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",
|
2023-03-08 21:13:25 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.54.0",
|
|
|
|
"@typescript-eslint/parser": "^5.54.0",
|
2022-10-12 02:05:01 +00:00
|
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
2022-05-31 22:42:00 +00:00
|
|
|
"@woocommerce/internal-e2e-builds": "workspace:*",
|
2022-04-29 22:04:41 +00:00
|
|
|
"@wordpress/babel-plugin-import-jsx-pragma": "1.1.3",
|
|
|
|
"@wordpress/babel-preset-default": "3.0.2",
|
2023-03-08 21:13:25 +00:00
|
|
|
"@wordpress/browserslist-config": "wp-6.0",
|
2023-02-02 10:25:04 +00:00
|
|
|
"eslint": "^8.32.0",
|
2022-10-12 02:05:01 +00:00
|
|
|
"eslint-plugin-jest": "23.20.0"
|
2022-04-29 22:04:41 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"@woocommerce/api": "^0.2.0"
|
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2022-08-05 00:03:17 +00:00
|
|
|
"turbo:build": "pnpm run clean && pnpm run compile",
|
2022-09-15 21:21:42 +00:00
|
|
|
"build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name",
|
2022-04-29 22:04:41 +00:00
|
|
|
"clean": "rm -rf ./build ./build-module",
|
|
|
|
"compile": "e2e-builds",
|
2023-03-28 19:48:20 +00:00
|
|
|
"prepack": "pnpm run build",
|
2022-05-05 03:02:50 +00:00
|
|
|
"lint": "eslint src --ext=js,ts,tsx",
|
|
|
|
"lint:fix": "eslint src --ext=js,ts,tsx --fix"
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.(t|j)s?(x)": [
|
|
|
|
"pnpm lint:fix"
|
|
|
|
]
|
2022-04-29 22:04:41 +00:00
|
|
|
}
|
2020-09-10 19:10:48 +00:00
|
|
|
}
|