forked from maillab/cloud-mail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.54 KB
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
51
52
{
"name": "email-monitoring-tests",
"version": "1.0.0",
"description": "Comprehensive end-to-end testing suite for email monitoring functionality",
"main": "run-monitoring-tests.js",
"scripts": {
"test": "node run-monitoring-tests.js",
"test:e2e": "node email-monitoring-e2e-test.js",
"test:frontend": "node frontend-monitoring-test.js",
"test:verbose": "node run-monitoring-tests.js --verbose",
"test:no-frontend": "node run-monitoring-tests.js --skip-frontend",
"test:dev": "TEST_BASE_URL=http://localhost:8787 npm run test",
"test:staging": "TEST_BASE_URL=https://staging.example.com npm run test",
"test:production": "TEST_BASE_URL=https://production.example.com npm run test",
"cleanup": "node -e \"require('./email-monitoring-e2e-test.js').cleanup()\"",
"help": "node run-monitoring-tests.js --help"
},
"keywords": [
"email",
"monitoring",
"testing",
"e2e",
"automation",
"cloudflare",
"d1",
"workers"
],
"author": "Email Monitoring Team",
"license": "MIT",
"dependencies": {
"puppeteer": "^21.0.0"
},
"devDependencies": {
"eslint": "^8.0.0",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-org/email-monitoring.git"
},
"bugs": {
"url": "https://github.com/your-org/email-monitoring/issues"
},
"homepage": "https://github.com/your-org/email-monitoring#readme",
"config": {
"test_timeout": 30000,
"default_base_url": "http://localhost:8787"
}
}