-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.67 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
64
65
66
67
{
"name": "@wdio/chrome-recorder",
"version": "0.6.0",
"description": "Generate WebdriverIO Tests from Google Chrome DevTools Recordings.",
"main": "dist/index.js",
"bin": "bin/wdio-chrome-recorder.js",
"files": [
"bin",
"dist"
],
"type": "module",
"scripts": {
"build": "tsc -p .",
"clean": "rm -rf dist",
"test": "run-s test:*",
"test:lint": "eslint '**/*.{js,ts}' --fix .",
"test:unit": "vitest --run",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/chrome-recorder.git"
},
"keywords": [
"webdriverio",
"wdio",
"testing",
"e2e",
"automation",
"devtools"
],
"author": "Christian Bromann <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webdriverio/chrome-recorder/issues"
},
"homepage": "https://github.com/webdriverio/chrome-recorder#readme",
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.12.7",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"chai": "^5.1.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"npm-run-all2": "^6.1.2",
"release-it": "^17.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vitest": "^2.0.3"
},
"dependencies": {
"@puppeteer/replay": "^3.0.0",
"chalk": "^5.3.0",
"globby": "^14.0.1",
"inquirer": "^10.0.1",
"meow": "^13.2.0",
"prettier": "^3.2.5"
},
"publishConfig": {
"access": "public"
}
}