UNPKG

@aaaz/gatsby-plugin-remote-images

Version:

Gatsby plugin to use gatsby-image on remote images from absolute path string fields on other nodes.

66 lines (65 loc) 1.6 kB
{ "name": "@aaaz/gatsby-plugin-remote-images", "version": "2.2.0", "description": "Gatsby plugin to use gatsby-image on remote images from absolute path string fields on other nodes.", "author": "Grayson Hicks <graysonhicks@gmail.com>", "main": "gatsby-node.js", "files": [ "gatsby-node.js", "README.md" ], "repository": "andyaaz/gatsby-plugin-remote-images", "keywords": [ "gatsby", "gatsby-plugin", "gatsby-image", "gatsby-source-filesystem", "plugin", "images", "remote", "download", "api" ], "license": "MIT", "peerDependencies": { "gatsby": ">=2.2.0" }, "devDependencies": { "@babel/cli": "^7.0.0", "@babel/core": "^7.0.0", "babel-jest": "^24.8.0", "babel-preset-gatsby-package": "^0.1.3", "cross-env": "^5.1.4", "husky": "^3.1.0", "jest": "^24.8.0", "lint-staged": "^9.5.0", "prettier": "^1.19.1" }, "dependencies": { "gatsby-source-filesystem": "^2.3.14", "lodash": "^4.17.15" }, "scripts": { "build": "babel src --out-dir . --ignore **/__tests__", "format": "prettier --write **/*.{js,jsx,ts,tsx,json,css,scss,md}", "prepare": "cross-env NODE_ENV=production npm run build", "watch": "babel -w src --out-dir . --ignore **/__tests__", "test": "jest" }, "prettier": { "proseWrap": "always", "singleQuote": true, "trailingComma": "es5" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "**/*.{js,jsx,ts,tsx,json,css,scss,md}": [ "prettier --write", "git add" ] } }