-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
{
"name": "webdriverio-devtools",
"version": "8.0.0",
"description": "WebdriverIO with Chrome DevTools Protocol",
"type": "module",
"scripts": {
"compile": "tsc",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"test": "wdio run ./wdio.conf.ts",
"test:headless": "npm run test -- --headless",
"precommit": "run-s compile lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mgrybyk/webdriverio-devtools.git"
},
"keywords": [
"WebdriverIO",
"devtools",
"wdio",
"mocha",
"typescript",
"expect-webdriverio"
],
"author": "mykola.grybyk@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/mgrybyk/webdriverio-devtools/issues"
},
"homepage": "https://github.com/mgrybyk/webdriverio-devtools#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/mocha": "^10.0.1",
"@wdio/allure-reporter": "^8.15.6",
"@wdio/cli": "^8.15.6",
"@wdio/globals": "^8.15.6",
"@wdio/local-runner": "^8.15.6",
"@wdio/mocha-framework": "^8.15.6",
"@wdio/spec-reporter": "^8.15.6",
"devtools": "^8.15.6",
"expect-webdriverio": "^4.2.7",
"rimraf": "^5.0.1"
}
}