forked from sitespeedio/chrome-har
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
{
"name": "chrome-har",
"version": "0.13.2",
"description": "Create HAR files from Chrome Debugging Protocol data.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"test": "ava",
"test:watch": "ava --watch"
},
"keywords": [
"chrome",
"har",
"webperf"
],
"files": [
"CHANGELOG.md",
"README.md",
"LICENSE",
"lib",
"index.js",
"package.json",
"npm-shrinkwrap.json"
],
"author": "Tobias Lidskog <tobias@lidskog.se>",
"homepage": "https://github.com/sitespeedio/chrome-har",
"repository": {
"type": "git",
"url": "https://github.com/sitespeedio/chrome-har.git"
},
"engines": {
"node": ">=14.19.1"
},
"license": "MIT",
"devDependencies": {
"ava": "~0.25.0",
"bluebird": "~3.5.1",
"eslint": "~4.18.2",
"eslint-config-prettier": "~2.9.0",
"eslint-plugin-prettier": "~2.6.0",
"har-validator": "~5.1.0",
"prettier": "~1.11.1"
},
"dependencies": {
"dayjs": "1.11.7",
"debug": "4.3.4",
"tough-cookie": "4.1.3",
"uuid": "9.0.0"
}
}