UNPKG

gatsby-source-google-photos

Version:
63 lines (62 loc) 1.35 kB
{ "name": "gatsby-source-google-photos", "version": "3.1.1", "description": "Gatsby plugin to use Google Photos as a data source", "repository": "https://github.com/cedricdelpoux/gatsby-source-google-photos", "author": { "name": "Cédric Delpoux", "email": "cedric.delpoux@gmail.com" }, "license": "MIT", "private": false, "keywords": [ "gatsby", "gatsby-plugin", "gatsby-source", "gatsby-source-plugin", "google", "google-photos", "photos" ], "main": "index.js", "files": [ "gatsby-node.js", "utils" ], "dependencies": { "gatsby-source-filesystem": "^4.15.0", "google-oauth2-env-vars": "^1.3.0", "googlephotos": "^0.3.5", "yamljs": "^0.3.0" }, "devDependencies": { "eslint": "^8.16.0", "eslint-config-prettier": "^8.5.0", "husky": "^4.3.0", "lint-staged": "^11.2.6", "prettier": "2.6.2" }, "peerDependencies": { "gatsby": "^3.0.0 || ^4.0.0" }, "scripts": { "lint": "eslint gatsby-node.js utils example/src", "prepublishOnly": "yarn lint" }, "bin": { "gatsby-source-google-photos-token": "./utils/generate-token.js" }, "lint-staged": { "*.js": [ "eslint" ], "*.{css,js,md}": [ "prettier --write" ] }, "husky": { "hooks": { "pre-commit": "lint-staged" } } }