UNPKG

fandomscraper

Version:

A package to scrap fandoms wikis characters page. Only scraps the characters info section and the list of all repertoried characters.

68 lines (67 loc) 1.79 kB
{ "name": "fandomscraper", "version": "1.2.0", "type": "module", "description": "A package to scrap fandoms wikis characters page. Only scraps the characters info section and the list of all repertoried characters.", "files": [ "dist", "wikia" ], "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" }, "./wikia/*": "./wikia/*" }, "module": "./dist/index.js", "scripts": { "clean": "rimraf dist", "build": "pnpm clean && tsup && shx cp -r wikia dist/wikia && shx cp types/globals.d.ts dist/", "prepublishOnly": "pnpm build", "test": "npx jest --config=jest.config.cjs", "test:smoke": "LIVE_FANDOM_SMOKE=1 npx jest --config=jest.config.cjs --runInBand spec/smoke/liveWikis.smoke.spec.ts", "playground": "cd playground && pnpm dev", "playground:install": "cd playground && pnpm install" }, "repository": { "type": "git", "url": "git+https://github.com/dilaouid/FandomScraper.git" }, "publishConfig": { "registry": "https://registry.npmjs.org" }, "keywords": [ "fandom", "wikia", "wiki", "scraper", "characters", "info", "list" ], "author": "dilaouid", "license": "GPLv3", "private": false, "bugs": { "url": "https://github.com/dilaouid/FandomScraper/issues" }, "homepage": "https://github.com/dilaouid/FandomScraper#readme", "dependencies": { "jsdom": "^22.1.0" }, "devDependencies": { "@types/chai": "^4.3.20", "@types/jest": "^29.5.14", "@types/jsdom": "^21.1.7", "chai": "^4.5.0", "jest": "^29.7.0", "rimraf": "^5.0.10", "shx": "^0.3.4", "ts-jest": "^29.2.5", "tsup": "^8.3.6", "typescript": "^5.7.3" } }