-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 932 Bytes
/
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
{
"name": "saz2har",
"version": "2.3.0",
"description": "Converts SAZ file (from Fiddler) to HAR file",
"author": {
"name": "Alexander Myadzel",
"email": "myadzel@gmail.com"
},
"main": "./index.js",
"bin": {
"saz2har": "./bin.js"
},
"keywords": [
"saz",
"har",
"fiddler",
"chrome",
"parser",
"webdev",
"devtools"
],
"repository": {
"type": "git",
"url": "https://github.com/myadzel/saz2har.git"
},
"bugs": {
"url": "https://github.com/myadzel/saz2har/issues"
},
"dependencies": {
"extract-zip": "2.0.0",
"har-validator": "5.1.3",
"moment": "^2.25.0",
"pako": "^1.0.11",
"pixl-xml": "^1.0.13",
"rimraf": "^3.0.2",
"yargs": "^15.3.1"
},
"engines": {
"node": ">=6.4.0"
},
"license": "MIT"
}