2020-09-29 18:22:20 +00:00
|
|
|
{
|
2022-04-29 22:04:41 +00:00
|
|
|
"name": "@woocommerce/e2e-core-tests",
|
|
|
|
"version": "0.2.0",
|
|
|
|
"description": "End-To-End (E2E) tests for WooCommerce",
|
|
|
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/e2e-core-tests/README.md",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/woocommerce/woocommerce.git"
|
|
|
|
},
|
|
|
|
"license": "GPL-3.0+",
|
|
|
|
"main": "build/index.js",
|
|
|
|
"module": "build-module/index.js",
|
|
|
|
"files": [
|
|
|
|
"build",
|
|
|
|
"build-module",
|
|
|
|
"test-data",
|
|
|
|
"core-tests-root.js",
|
|
|
|
"installFiles",
|
|
|
|
"CHANGELOG.md"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
|
|
|
"@jest/globals": "^26.4.2",
|
|
|
|
"@wordpress/deprecated": "^3.2.3",
|
|
|
|
"config": "3.3.3"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-05 03:02:50 +00:00
|
|
|
"@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",
|
2022-05-31 22:42:00 +00:00
|
|
|
"@woocommerce/internal-e2e-builds": "workspace:*",
|
2022-05-05 03:02:50 +00:00
|
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
|
|
|
"@wordpress/babel-plugin-import-jsx-pragma": "1.1.3",
|
|
|
|
"@wordpress/babel-preset-default": "3.0.2",
|
|
|
|
"@wordpress/browserslist-config": "^4.1.0",
|
|
|
|
"eslint": "^8.12.0"
|
2022-04-29 22:04:41 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"@woocommerce/api": "^0.2.0",
|
|
|
|
"@woocommerce/e2e-utils": "^0.1.6"
|
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2022-05-05 03:02:50 +00:00
|
|
|
"prepare": "pnpm run build",
|
2022-04-29 22:04:41 +00:00
|
|
|
"clean": "rm -rf ./build ./build-module",
|
|
|
|
"compile": "e2e-builds",
|
2022-05-05 03:02:50 +00:00
|
|
|
"build": "./bin/build.sh && pnpm run clean && pnpm run compile",
|
|
|
|
"lint": "eslint src --ext=js,ts,tsx",
|
|
|
|
"lint:fix": "eslint src --ext=js,ts,tsx --fix"
|
2022-04-29 22:04:41 +00:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.(t|j)s?(x)": [
|
2022-05-05 03:02:50 +00:00
|
|
|
"pnpm lint:fix"
|
2022-04-29 22:04:41 +00:00
|
|
|
]
|
|
|
|
}
|
2020-09-29 18:22:20 +00:00
|
|
|
}
|