-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.16 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.16 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@gbisogno/cdp-utils",
"version": "1.5.2",
"description": "A set of utilities/wrapper for Test Automation or Performance testing on top of Chrome DevTools Protocol",
"repository": {
"type": "git",
"url": "git+https://github.com/germanbisogno/cdp-utils.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha --require ts-node/register --exit --parallel",
"format": "prettier --write src/**/*.ts",
"prebuild": "npm run lint && npm run format",
"lint": "eslint --fix ./src/**/*.ts",
"doc": "compodoc -p --tsconfig tsconfig.json -s"
},
"keywords": [
"chrome dev tools",
"cdp",
"tracing",
"performance",
"lighthouse",
"network",
"testing",
"selenium"
],
"type": "module",
"author": "Germán Bisogno",
"license": "MIT",
"devDependencies": {
"@compodoc/compodoc": "^1.1.16",
"@types/chai": "^4.3.4",
"@types/chrome-remote-interface": "0.31.9",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.1",
"@types/selenium-webdriver": "^4.0.16",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"chai": "^4.3.7",
"chai-asserttype-extra": "^2.0.13",
"chromedriver": "^120.0.1",
"dotenv": "^16.0.3",
"endpoint-utils": "^1.0.2",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.2",
"mocha": "^10.2.0",
"prettier": "^2.4.1",
"selenium-webdriver": "^4.8.1",
"sinon": "^15.0.2",
"ts-node": "^10.9.1",
"typed-query-selector": "^2.6.1",
"typescript": "^4.4.4",
"ws": "^8.16.0"
},
"dependencies": {
"@influxdata/influxdb-client": "^1.33.2",
"@menadevs/objectron": "^0.1.14",
"@types/har-format": "^1.2.8",
"@types/node": "^17.0.14",
"axios": "^1.6.0",
"chrome-har": "^0.12.0",
"chrome-har-capturer": "^0.14.0",
"chrome-remote-interface": "^0.33.0",
"devtools-protocol": "0.0.1055124",
"lighthouse": "10.0.2",
"puppeteer": "^16.2.0",
"winston": "^3.3.3"
},
"files": [
"dist/**/*"
]
}