UNPKG

gphotos-scraper

Version:

A tool to extract public url and metadata from shared album

54 lines (53 loc) 1.39 kB
{ "name": "gphotos-scraper", "version": "2.0.0", "description": "A tool to extract public url and metadata from shared album", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "gphotos-scraper": "./dist/cli.js" }, "scripts": { "lint": "eslint --ext .ts .", "lint:fix": "eslint --fix --ext .ts .", "build": "tsc", "build:watch": "tsc -w", "test": "exit 0", "prepublish": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/jmsalazardev/gphotos-scraper.git" }, "license": "MIT", "author": { "name": "José Miguel Salazar", "email": "contacto@jmsalazar.dev" }, "keywords": [ "google-photos", "scraper" ], "bugs": { "url": "https://github.com/jmsalazardev/gphotos-scraper/issues" }, "homepage": "https://github.com/jmsalazardev/gphotos-scraper#readme", "devDependencies": { "@types/clear": "^0.1.2", "@types/jsdom": "^16.2.14", "@types/mime-types": "^2.1.1", "@types/node": "^17.0.41", "@typescript-eslint/eslint-plugin": "^5.27.1", "@typescript-eslint/parser": "^5.27.1", "eslint": "^8.17.0", "eslint-plugin-import": "^2.26.0", "typescript": "^4.7.3" }, "dependencies": { "axios": "^0.27.2", "cheerio": "^1.0.0-rc.11", "clear": "^0.1.0", "commander": "^9.3.0", "mime-types": "^2.1.35" } }