-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "webpagetest-chrome-recorder",
"version": "1.7.2",
"description": "This module will help you to convert JSON user flows from Google Chrome DevTools Recorder to WEBPAGETEST Custom Scripts",
"main": "dist/main.js",
"bin": {
"wptrecorder": "/bin/webpagetest-chrome-recorder.js"
},
"files": [
"bin",
"dist"
],
"type": "module",
"scripts": {
"test": "mocha --config .mocharc.cjs",
"build": "tsc -p .",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebPageTest/Recorder-To-WPT-Script"
},
"keywords": [
"webpagetest",
"multistep",
"automation",
"testing",
"Performance"
],
"author": "Siddhant Shukla <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/WebPageTest/Recorder-To-WPT-Script/issues"
},
"homepage": "https://github.com/WebPageTest/Recorder-To-WPT-Script#readme",
"dependencies": {
"@puppeteer/replay": "^2.9.0",
"chalk": "^5.2.0",
"globby": "^13.1.3",
"meow": "^11.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/mocha": "^10.0.1",
"inquirer": "^9.0.3",
"mocha": "^10.2.0"
}
}