UNPKG

puppeteer-interceptor

Version:

Makes intercepting and modifying traffic from Puppeteer easier

53 lines (52 loc) 1.28 kB
{ "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": "jsoverson@gmail.com", "url": "https://jarrodoverson.com" }, "files": [ "README.md", "dist/**/*" ], "license": "ISC", "dependencies": { "atob": "2.1.2", "btoa": "1.2.1", "debug": "4.1.1", "lodash.pick": "^4.4.0" }, "devDependencies": { "@jsoverson/test-server": "1.1.1", "@types/atob": "2.1.2", "@types/btoa": "1.2.3", "@types/debug": "4.1.5", "@types/lodash.pick": "^4.4.6", "@types/mocha": "7.0.2", "@types/node": "13.13.2", "@types/serve-handler": "6.1.0", "devtools-protocol": "0.0.761827", "mocha": "7.1.1", "prettier": "2.0.5", "puppeteer": "5.2.1", "ts-node": "8.9.0", "typescript": "3.8.3" } }