-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.18 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": "puppeteer-interceptor",
"version": "2.2.0",
"description": "Makes intercepting and modifying traffic from Puppeteer easier",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "npm run clean && tsc --declaration",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"watch": "tsc -w",
"test": "mocha"
},
"keywords": [
"puppeteer",
"intercept",
"mitm"
],
"author": {
"name": "Jarrod Overson",
"email": "[email protected]",
"url": "https://jarrodoverson.com"
},
"files": [
"README.md",
"dist/**/*"
],
"license": "ISC",
"dependencies": {
"atob": "2.1.2",
"btoa": "1.2.1",
"debug": "4.3.4"
},
"devDependencies": {
"@jsoverson/test-server": "1.1.1",
"@types/atob": "2.1.2",
"@types/btoa": "1.2.3",
"@types/debug": "4.1.5",
"@types/mocha": "7.0.2",
"@types/node": "13.13.2",
"@types/serve-handler": "6.1.0",
"devtools-protocol": "0.0.761827",
"mocha": "10.2.0",
"prettier": "2.0.5",
"puppeteer": "5.2.1",
"ts-node": "8.9.0",
"typescript": "3.8.3"
}
}