UNPKG

ts-webcrawler

Version:

A typescript webcrawler library for downloading and parsing webpages

53 lines (52 loc) 1.67 kB
{ "name": "ts-webcrawler", "repository": { "type": "git", "url": "https://github.com/standahorvath/webcrawler.git" }, "version": "0.0.22", "description": "A typescript webcrawler library for downloading and parsing webpages", "main": "./lib/index.js", "types": "./lib/index.d.ts", "files": [ "lib" ], "scripts": { "dev": "nodemon src/dev.ts", "start": "node index.ts", "test": "jest", "build": "del-cli ./lib && del-cli ./build && npm run build:esm", "build:esm": "tsc", "pre-publish": "npm run build && npm run test" }, "author": "Stanislav Horváth", "keywords": ["Web Crawler", "Spider", "Download page", "Scraper", "Webpage", "HTML", "Parse", "Typescript Webcrawler"], "license": "MIT", "dependencies": { "@types/jest": "^29.1.2", "cors": "^2.8.4", "del-cli": "^5.0.0", "dotenv": "^16.0.1", "node-fetch": "^2.6.9", "nodemon": "^2.0.15", "ts-node": "^10.9.1", "url-content": "^1.0.6" }, "devDependencies": { "@babel/core": "^7.19.3", "@babel/preset-env": "^7.19.3", "@babel/preset-typescript": "^7.18.6", "@types/cors": "^2.8.12", "@types/node": "^18.8.3", "@types/node-fetch": "^2.6.2", "@types/nodemailer": "^6.4.6", "@typescript-eslint/eslint-plugin": "^5.40.1", "@typescript-eslint/parser": "^5.39.0", "babel-jest": "^29.1.2", "eslint": "^8.25.0", "jest": "^29.1.2", "standard": "^11.0.1", "ts-jest": "^29.0.3", "typescript": "^4.8.4" } }