webscanner
Version:
Automation scanner for web resources
60 lines (59 loc) • 1.3 kB
JSON
{
"name": "webscanner",
"version": "0.0.1",
"description": "Automation scanner for web resources",
"repository": "https://github.com/bgauryy/webscanner",
"author": {
"name": "Guy Bary",
"email": "bgauryy@gmail.com"
},
"keywords": [
"scanner",
"web",
"puppeteer",
"devtools",
"chrome",
"automation",
"analysis",
"jest",
"node",
"resources",
"network"
],
"engines": {
"node": ">=14.0.3"
},
"main": "src/index.cjs.js",
"module": "src/index.esm.js",
"scripts": {
"inspect": "node index.js",
"lint": "eslint src",
"test": "yarn jest",
"build": "rollup -c",
"clean": "rimraf src/index.cjs.js src/index.esm.js",
"prepublishOnly": "yarn clean && yarn lint && yarn build"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"eslint": "^8.15.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.73.0",
"rollup-plugin-babel": "^4.4.0"
},
"dependencies": {
"atob": "^2.1.2",
"chrome-remote-interface": "^0.31.2",
"geoip-lite": "^1.4.5"
},
"license": "MIT"
}