UNPKG

node-multi-curl

Version:

A performant multi-curl class in Node.js that supports proxies and concurrent requests

55 lines (54 loc) 1.31 kB
{ "name": "node-multi-curl", "version": "1.0.4", "description": "A performant multi-curl class in Node.js that supports proxies and concurrent requests", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "test": "jest", "start": "node dist/index.js", "lint": "eslint src --ext .ts", "format": "prettier --write \"src/**/*.ts\"", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint" }, "repository": { "type": "git", "url": "https://github.com/suhatakbulak/node-multi-curl.git" }, "keywords": [ "curl", "http", "requests", "proxy", "nodejs", "scraping", "concurrent-requests", "http2" ], "author": "Your Name", "license": "MIT", "files": [ "dist/**/*" ], "dependencies": { "axios": "^1.6.2", "axios-retry": "^3.5.0", "node-cache": "^5.1.2", "p-limit": "^4.0.0", "uuid": "^9.0.0" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/uuid": "^9.0.2", "@typescript-eslint/eslint-plugin": "^6.2.1", "@typescript-eslint/parser": "^6.2.1", "eslint": "^8.46.0", "eslint-config-prettier": "^9.0.0", "jest": "^29.6.2", "prettier": "^3.0.1", "ts-jest": "^29.4.0", "typescript": "^5.2.2" } }