-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 986 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
43
44
45
{
"name": "esniffer",
"version": "1.0.1",
"author": "Kohei Ueno <[email protected]>",
"description": "Modern network analyze tool. Alternatives to Hoxy, Charles, etc.",
"repository": {
"type": "git",
"url": "[email protected]:cola119/ESniffer.git"
},
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"example": "ts-node example/tls.ts",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@types/pem": "^1.9.5",
"jest": "^26.6.3",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"pem": "^1.14.4",
"strict-event-emitter-types": "^2.0.0"
},
"files": [
"dist"
],
"keywords": [
"charles",
"proxy",
"sniffing",
"sniffer",
"network",
"debug",
"hoxy"
]
}