woocommerce/packages/js/e2e-environment/package.json

79 lines
2.6 KiB
JSON
Raw Normal View History

{
"name": "@woocommerce/e2e-environment",
2021-09-08 14:01:02 +00:00
"version": "0.2.3",
"description": "WooCommerce End to End Testing Environment Configuration.",
"author": "Automattic",
"license": "GPL-3.0-or-later",
"keywords": [
"wordpress",
"woocommerce",
"e2e",
"puppeteer"
],
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/e2e-environment/README.md",
"bugs": {
"url": "https://github.com/woocommerce/woocommerce/issues"
},
"repository": {
"type": "git",
2020-04-07 08:43:11 +00:00
"url": "https://github.com/woocommerce/woocommerce.git"
},
"main": "index.js",
"module": "build-module/index.js",
"dependencies": {
"@automattic/puppeteer-utils": "github:Automattic/puppeteer-utils#0f3ec50",
"@jest/test-sequencer": "^25.5.4",
"@slack/web-api": "^6.1.0",
2021-06-30 20:03:07 +00:00
"@woocommerce/api": "^0.2.0",
"@wordpress/e2e-test-utils": "^4.16.1",
2021-12-15 15:08:37 +00:00
"@wordpress/jest-preset-default": "^7.1.3",
"app-root-path": "^3.0.0",
"commander": "4.1.1",
"jest": "^25.1.0",
"jest-circus": "25.1.0",
2021-03-08 20:17:27 +00:00
"jest-each": "25.5.0",
2021-07-15 20:39:32 +00:00
"jest-puppeteer": "^4.4.0",
"node-stream-zip": "^1.13.6",
2021-12-08 19:12:27 +00:00
"readline-sync": "^1.4.10",
2021-07-15 20:39:32 +00:00
"request": "^2.88.2",
2021-11-26 21:08:27 +00:00
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"@babel/cli": "7.12.8",
"@babel/core": "7.12.9",
2021-12-16 15:48:52 +00:00
"@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",
2021-12-16 15:48:52 +00:00
"@wordpress/babel-plugin-import-jsx-pragma": "1.1.3",
"@wordpress/babel-preset-default": "3.0.2",
"@wordpress/browserslist-config": "^4.1.0",
"@wordpress/eslint-plugin": "7.3.0",
2021-11-05 12:54:57 +00:00
"eslint": "^8.1.0",
"ndb": "^1.1.5",
"semver": "^7.3.2"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf ./build ./build-module",
"compile": "node ./../bin/build.js",
"build": "pnpm run clean && pnpm run compile",
"prepare": "pnpm run build",
"docker:up": "./bin/docker-compose.sh up",
"docker:down": "./bin/docker-compose.sh down",
"docker:clear-all": "docker rmi --force $(docker images -q)",
"docker:ssh": "docker exec -it $(node utils/get-app-name.js)_wordpress-www /bin/bash",
"test:e2e": "bash ./bin/wait-for-build.sh && ./bin/e2e-test-integration.js",
2020-10-09 08:00:03 +00:00
"test:e2e-debug": "bash ./bin/wait-for-build.sh && ./bin/e2e-test-integration.js --dev --debug",
2021-11-05 12:54:57 +00:00
"test:e2e-dev": "bash ./bin/wait-for-build.sh && ./bin/e2e-test-integration.js --dev",
"lint": "eslint src"
2020-12-07 16:06:45 +00:00
},
"bin": {
2020-12-15 18:37:55 +00:00
"wc-e2e": "bin/wc-e2e.sh"
}
}