@skypilot/scraper
Version:
Node-based scriptable web scraper
71 lines (70 loc) • 2.22 kB
JSON
{
"name": "@skypilot/scraper",
"version": "1.0.0-alpha.23",
"private": false,
"description": "Node-based scriptable web scraper",
"keywords": [
"scrape",
"node",
"scripted",
"web",
"scraper"
],
"homepage": "https://github.com/skypilot-dev/scraper#readme",
"bugs": {
"url": "https://github.com/skypilot-dev/scraper/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skypilot-dev/scraper.git"
},
"license": "MIT",
"author": "William Thorsen <william@thorsen.dev>",
"main": "lib/index.js",
"scripts": {
"cb": "yarn run check-build",
"cc": "yarn run check-code",
"ct": "yarn run check-types",
"build": "rm -rf lib && yarn run copy-files-to-distribution && yarn run compile-ts",
"check-build": "yarn run check-code && yarn run build",
"check-code": "yarn run check-types && yarn run lint --quiet && yarn test",
"check-types": "tsc",
"compile-ts": "babel ./src --out-dir ./lib --extensions .ts --ignore '**/__tests__/*' --ignore '**/*.d.ts' && yarn run generate-typings",
"copy-files-to-distribution": "babel-node --extensions .ts build/copy-files-to-distribution.ts",
"generate-typings": "tsc --project tsconfig.generate-typings.json",
"lint": "eslint --cache '**/*.{js,ts}'",
"prepublishOnly": "yarn run check-build",
"publish:default": "yarn publish --non-interactive",
"test": "jest --config jest.standalone.config.js",
"test:all": "jest --config jest.config.js",
"test:int": "jest --config jest.integration.config.js"
},
"dependencies": {
"@skypilot/optio": "^2.0.3",
"@skypilot/sugarbowl": "^4.0.0-next.4",
"deepmerge": "^4.2.2",
"json-beautify": "^1.1.1",
"lowdb": "^1.0.0",
"rfdc": "^1.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@skypilot/common-types": "^2.3.0",
"@skypilot/toolchain": "^5.2.3",
"@types/deepmerge": "^2.2.0",
"@types/lowdb": "^1.0.11",
"@types/uuid": "^8.3.1",
"playwright": "^1.14.0",
"type-fest": "^2.0.0"
},
"peerDependencies": {
"playwright": "^1.14.0"
},
"publishConfig": {
"access": "restricted"
},
"files": [
"/lib"
],
"types": "lib/index.d.ts"
}