webhead
Version:
An easy-to-use Node web crawler storing cookies, following redirects, traversing pages and submitting forms.
66 lines (65 loc) • 1.64 kB
JSON
{
"name": "webhead",
"version": "1.1.3",
"description": "An easy-to-use Node web crawler storing cookies, following redirects, traversing pages and submitting forms.",
"source": "src/webhead.js",
"main": "dist/webhead.js",
"module": "dist/webhead.module.js",
"unpkg": "dist/webhead.umd.js",
"types": "dist/webhead.d.ts",
"files": [
"dist",
"src/webhead.js"
],
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"example:bing": "node --trace-warnings examples/bing.mjs",
"example:github": "node --trace-warnings examples/github.js",
"example:typicode": "node --trace-warnings examples/typicode.js",
"prepublishOnly": "microbundle",
"prettier": "npx prettier --write .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/archan937/webhead.git"
},
"keywords": [
"spider",
"crawler",
"scraper",
"headless",
"node",
"fetch",
"traversing",
"json",
"cookies",
"redirects",
"forms",
"file uploads",
"api"
],
"author": "Paul Engel",
"license": "MIT",
"bugs": {
"url": "https://github.com/archan937/webhead/issues"
},
"homepage": "https://github.com/archan937/webhead#readme",
"dependencies": {
"@types/cheerio": "^0.22.22",
"cheerio": "^1.0.0-rc.3",
"form-data": "^3.0.0",
"fs-extra": "^9.0.1",
"jquery-param": "^1.1.3",
"node-fetch": "^2.6.1",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"express": "^4.17.1",
"jest": "^26.6.0",
"microbundle": "^0.12.4",
"prettier": "^2.2.0",
"prompts": "^2.3.2"
}
}