-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.57 KB
/
package.json
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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "wdio-gmail-service",
"version": "2.0.0",
"description": "A WebdriverIO plugin to fetch e-mails from Google Mail",
"author": "Hugh McCamphill",
"license": "MIT",
"homepage": "https://github.com/webdriverio-community/wdio-gmail-service#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio-community/wdio-gmail-service.git"
},
"bugs": {
"url": "https://github.com/webdriverio-community/wdio-gmail-service/issues"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"wdio",
"wdio-gmail-service",
"wdio-service",
"wdio-plugin",
"gmail-tester"
],
"main": "./build/cjs/index.js",
"type": "module",
"module": "./build/index.js",
"exports": {
".": [
{
"import": "./build/index.js",
"require": "./build/cjs/index.js"
},
"./build/cjs/index.js"
]
},
"scripts": {
"build": "run-s clean compile copy",
"clean": "rimraf ./build",
"compile": "tsc --build tsconfig.json",
"copy": "cp src/cjs/package.json build/cjs",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:unit": "vitest --run",
"watch": "npm run compile -- --watch"
},
"dependencies": {
"@wdio/globals": "9.5.1",
"@wdio/types": "9.5.0",
"gmail-tester": "^1.3.8"
},
"devDependencies": {
"@types/node": "^20.14.11",
"@vitest/coverage-v8": "^2.1.4",
"@wdio/eslint": "^0.0.5",
"eslint": "^9.14.0",
"npm-run-all2": "^7.0.1",
"release-it": "^18.0.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}