File size: 1,704 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
	"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"
	}
}