-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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": "chrome-har",
"type": "module",
"version": "1.0.1",
"description": "Create HAR files from Chrome Debugging Protocol data.",
"exports": "./index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"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 <[email protected]>",
"homepage": "https://github.com/sitespeedio/chrome-har",
"repository": {
"type": "git",
"url": "https://github.com/sitespeedio/chrome-har.git"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"devDependencies": {
"ava": "6.1.3",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unicorn": "56.0.0",
"har-validator": "~5.1.0",
"prettier": "3.3.3"
},
"dependencies": {
"debug": "4.3.7",
"tough-cookie": "5.0.0"
}
}