2021-07-13 19:38:05 +00:00
|
|
|
{
|
2021-07-14 20:38:57 +00:00
|
|
|
"name": "@woocommerce/admin-e2e-tests",
|
2022-03-22 08:08:06 +00:00
|
|
|
"version": "1.0.0",
|
2021-07-14 20:38:57 +00:00
|
|
|
"author": "Automattic",
|
|
|
|
"description": "E2E tests for the new WooCommerce interface.",
|
2022-04-07 08:50:40 +00:00
|
|
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/admin-e2e-tests/README.md",
|
2021-07-14 20:38:57 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-04-07 08:50:40 +00:00
|
|
|
"url": "https://github.com/woocommerce/woocommerce.git"
|
2021-07-14 20:38:57 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"woocommerce",
|
|
|
|
"e2e"
|
|
|
|
],
|
|
|
|
"license": "GPL-3.0+",
|
|
|
|
"main": "build/index.js",
|
|
|
|
"types": "build/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"/build/",
|
|
|
|
"!*.ts.map",
|
|
|
|
"!*.tsbuildinfo"
|
|
|
|
],
|
|
|
|
"sideEffects": false,
|
|
|
|
"dependencies": {
|
2022-03-08 02:11:12 +00:00
|
|
|
"@jest/globals": "^26.6.2",
|
2022-03-18 11:45:14 +00:00
|
|
|
"@types/jest": "^27.4.1",
|
2022-03-08 02:11:12 +00:00
|
|
|
"config": "^3.3.7"
|
2021-07-14 20:38:57 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2022-03-09 03:34:45 +00:00
|
|
|
"@woocommerce/e2e-environment": "^0.2.3 || ^0.3.0",
|
2022-03-08 02:11:12 +00:00
|
|
|
"@woocommerce/e2e-utils": "^0.2.0",
|
2021-07-14 20:38:57 +00:00
|
|
|
"puppeteer": "^2.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-03-15 03:04:46 +00:00
|
|
|
"@babel/core": "^7.17.5",
|
2022-03-08 02:11:12 +00:00
|
|
|
"@types/expect-puppeteer": "^4.4.7",
|
|
|
|
"@types/puppeteer": "^5.4.5",
|
2022-03-18 11:45:14 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.14.0",
|
2022-03-08 02:11:12 +00:00
|
|
|
"@woocommerce/api": "^0.2.0",
|
2022-04-26 23:16:35 +00:00
|
|
|
"@woocommerce/eslint-plugin": "workspace:*",
|
2022-03-28 08:42:22 +00:00
|
|
|
"eslint": "^8.12.0",
|
2022-03-15 03:04:46 +00:00
|
|
|
"jest": "^27.5.1",
|
|
|
|
"jest-cli": "^27.5.1",
|
2022-03-08 02:11:12 +00:00
|
|
|
"jest-mock-extended": "^1.0.18",
|
|
|
|
"rimraf": "^3.0.2",
|
2022-03-15 03:04:46 +00:00
|
|
|
"ts-jest": "^27.1.3",
|
2022-03-08 02:11:12 +00:00
|
|
|
"typescript": "^4.6.2"
|
2021-07-14 20:38:57 +00:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2022-05-05 03:26:36 +00:00
|
|
|
"postinstall": "composer install",
|
2021-07-14 20:38:57 +00:00
|
|
|
"build": "tsc --build",
|
2022-04-26 22:47:07 +00:00
|
|
|
"start": "tsc --build --watch",
|
2022-03-04 04:01:16 +00:00
|
|
|
"clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*",
|
2022-03-28 08:42:22 +00:00
|
|
|
"lint": "eslint src",
|
2022-04-26 22:47:07 +00:00
|
|
|
"lint:fix": "eslint src --fix",
|
2022-03-04 04:01:16 +00:00
|
|
|
"prepack": "pnpm run clean && pnpm run build"
|
2022-04-06 08:58:17 +00:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.(t|j)s?(x)": [
|
2022-04-26 22:47:07 +00:00
|
|
|
"pnpm lint:fix"
|
2022-04-06 08:58:17 +00:00
|
|
|
]
|
2021-07-14 20:38:57 +00:00
|
|
|
}
|
2021-07-13 19:38:05 +00:00
|
|
|
}
|