77 lines
1.9 KiB
JSON
77 lines
1.9 KiB
JSON
{
|
|
"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+",
|
|
"engines": {
|
|
"node": "^16.14.1",
|
|
"pnpm": "^8.12.1"
|
|
},
|
|
"main": "build/index.js",
|
|
"module": "build-module/index.js",
|
|
"files": [
|
|
"build",
|
|
"build-module",
|
|
"test-data",
|
|
"core-tests-root.js",
|
|
"installFiles",
|
|
"CHANGELOG.md"
|
|
],
|
|
"scripts": {
|
|
"build": "./bin/build.sh && pnpm clean && pnpm compile",
|
|
"clean": "rm -rf ./build ./build-module",
|
|
"compile": "e2e-builds",
|
|
"lint": "eslint --ext=js,ts,tsx src",
|
|
"lint:fix": "eslint --ext=js,ts,tsx src --fix",
|
|
"prepack": "pnpm build"
|
|
},
|
|
"lint-staged": {
|
|
"*.(t|j)s?(x)": [
|
|
"pnpm lint:fix"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@jest/globals": "^27.5.1",
|
|
"@wordpress/deprecated": "wp-6.0",
|
|
"config": "3.3.7"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.12.8",
|
|
"@babel/core": "7.12.9",
|
|
"@babel/plugin-proposal-async-generator-functions": "^7.20.7",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
|
|
"@babel/plugin-transform-react-jsx": "^7.23.4",
|
|
"@babel/plugin-transform-runtime": "^7.23.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",
|
|
"eslint": "^8.55.0",
|
|
"eslint-plugin-jest": "23.20.0",
|
|
"wireit": "0.14.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@woocommerce/api": "^0.2.0",
|
|
"@woocommerce/e2e-utils": "^0.1.6"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"config": {
|
|
"ci": {
|
|
"lint": {
|
|
"command": "lint",
|
|
"changes": "src/**/*.{js,ts,tsx}"
|
|
}
|
|
}
|
|
}
|
|
}
|