Path: blob/master/node_modules/@bochilteam/scraper/package.json
1105 views
{1"name": "@bochilteam/scraper",2"version": "2.0.0",3"description": "scraper module",4"exports": {5".": {6"types": "./lib/@types/index.d.ts",7"import": "./lib/esm/index.js",8"require": "./lib/cjs/index.js"9}10},11"main": "./lib/cjs/index.js",12"types": "./lib/@types/index.d.ts",13"engines": {14"node": ">= 12.20"15},16"scripts": {17"test": "npm run build && npm run test:cjs && npm run test:esm",18"test:cjs": "mocha --timeout 20000 ./lib/cjs/**/test.js",19"test:esm": "mocha --timeout 20000 ./lib/esm/**/test.js",20"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types && node scripts/write-package.js",21"build:cjs": "tsc --p src/tsconfig.cjs.json",22"build:esm": "tsc --p src/tsconfig.esm.json",23"build:types": "tsc --p tsconfig.types.json",24"lint:fix": "npx eslint src/** --fix --ignore-pattern src/*.json",25"clean": "rimraf ./lib",26"prepare": "node scripts/compile-typescript.js"27},28"repository": {29"type": "git",30"url": "git+https://github.com/BochilTeam/scraper.git"31},32"author": "BochilTeam",33"license": "GPL-3.0-or-later",34"bugs": {35"url": "https://github.com/BochilTeam/scraper/issues"36},37"homepage": "https://github.com/BochilTeam/scraper#readme",38"devDependencies": {39"@types/chai": "^4.3.0",40"@types/mocha": "^9.1.0",41"@types/node": "^17.0.9",42"@types/ws": "^8.2.2",43"@typescript-eslint/eslint-plugin": "^5.13.0",44"@typescript-eslint/parser": "^5.13.0",45"@zoltu/typescript-transformer-append-js-extension": "^1.0.1",46"chai": "^4.3.6",47"eslint": "^7.32.0",48"eslint-config-standard": "^16.0.3",49"eslint-plugin-import": "^2.25.4",50"eslint-plugin-node": "^11.1.0",51"eslint-plugin-promise": "^5.0.0",52"mocha": "^9.2.0",53"typescript": "^4.5.5"54},55"dependencies": {56"cheerio": "^1.0.0-rc.10",57"form-data": "^4.0.0",58"got": "^11.8.3",59"human-readable": "^0.2.1"60},61"directories": {62"lib": "lib",63"src": "src",64"scripts": "scripts"65},66"files": [67"lib/*",68"scripts/*"69],70"optionalDependencies": {71"ws": "^8.4.2"72}73}747576