Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
{
"name": "@automattic/calypso-e2e",
"version": "0.1.1",
"description": "Tools for e2e tests.",
"main": "dist/esm/src/index.js",
"types": "dist/types/src/index.d.ts",
"author": "Automattic Inc.",
"homepage": "https://github.com/Automattic/wp-calypso",
"bugs": "https://github.com/Automattic/wp-calypso/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/Automattic/wp-calypso.git",
"directory": "packages/calypso-e2e"
},
"keywords": [
"e2e",
"calypso"
],
"license": "GPL-2.0-or-later",
"dependencies": {
"@jest/types": "^29.6.3",
"@playwright/browser-chromium": "1.48.2",
"@playwright/browser-firefox": "1.48.2",
"@types/totp-generator": "^0.0.8",
"form-data": "^4.0.2",
"jest-docblock": "^29.7.0",
"mailosaur": "^8.4.0",
"playwright": "1.48.2",
"totp-generator": "^0.0.14"
},
"devDependencies": {
"@automattic/calypso-eslint-overrides": "workspace:^",
"@automattic/calypso-typescript-config": "workspace:^",
"@automattic/languages": "workspace:^",
"@automattic/zendesk-client": "workspace:^",
"@jest/globals": "^29.7.0",
"@types/node": "^22.7.5",
"@wordpress/i18n": "^5.23.0",
"asana-phrase": "^0.0.8",
"nock": "^14.0.4",
"typescript": "^5.8.3"
},
"scripts": {
"clean": "yarn build --clean && rm -rf dist",
"build": "tsc --build ./tsconfig.json",
"encrypt-secrets": "openssl enc -md sha1 -aes-256-cbc -pass env:E2E_SECRETS_KEY -out ./src/secrets/encrypted.enc -in ./src/secrets/decrypted-secrets.json",
"decrypt-secrets": "rm -f ./src/secrets/decrypted-secrets.json; openssl enc -md sha1 -aes-256-cbc -d -pass env:E2E_SECRETS_KEY -in ./src/secrets/encrypted.enc -out ./src/secrets/decrypted-secrets.json"
}
}