diff --git a/package.json b/package.json index 71739ac2b416f..c17d870891976 100644 --- a/package.json +++ b/package.json @@ -40,17 +40,20 @@ "engines": { "yarn": "^1.2.1" }, + "eslintIgnore": [ + "interfaces", + "**/__tests__/fixtures/" + ], "private": true, "scripts": { "bootstrap": "npm-run-all -s check-versions lerna-prepublish", - "prebootstrap": "yarn", "check-versions": "babel-node scripts/check-versions.js", "format": "npm-run-all -p format-packages format-cache-dir format-www format-examples format-scripts format-markdown", "format-cache-dir": "prettier-eslint --write \"packages/gatsby/cache-dir/*.js\"", "format-examples": "prettier-eslint --write \"examples/**/gatsby-node.js\" \"examples/**/gatsby-config.js\" \"examples/**/src/**/*.js\"", + "format-markdown": "prettier --write \"**/*.md\" --semi", "format-packages": "prettier-eslint --write \"packages/*/src/**/*.js\"", "format-scripts": "prettier-eslint --write \"scripts/**/*.js\"", - "format-markdown": "prettier --write \"**/*.md\" --semi", "format-www": "prettier-eslint --write \"www/*.js\" \"www/src/**/*.js\"", "jest": "jest", "lerna": "lerna", @@ -58,6 +61,7 @@ "lint": "eslint --ext .js,.jsx packages/**/src", "lint:flow": "babel-node scripts/flow-check.js", "plop": "plop", + "prebootstrap": "yarn", "publish": "lerna publish", "publish-canary": "lerna publish --canary --yes", "publish-next": "lerna publish --npm-tag=next", @@ -70,9 +74,5 @@ }, "workspaces": [ "packages/*" - ], - "eslintIgnore": [ - "interfaces", - "**/__tests__/fixtures/" ] } diff --git a/packages/gatsby-1-config-css-modules/package.json b/packages/gatsby-1-config-css-modules/package.json index eb98b782e650b..61dc88d70b82c 100644 --- a/packages/gatsby-1-config-css-modules/package.json +++ b/packages/gatsby-1-config-css-modules/package.json @@ -1,23 +1,31 @@ { "name": "gatsby-1-config-css-modules", - "version": "1.0.8", "description": "CSS Modules configuration for Gatsby v1 plugins", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby" - ], + "version": "1.0.8", "author": "Ming Aldrich-Gan ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0" }, "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-1-config-css-modules#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index d1b3a9d57bbf8..2825ee82f2ad9 100644 --- a/packages/gatsby-cli/package.json +++ b/packages/gatsby-cli/package.json @@ -6,9 +6,9 @@ "bin": { "gatsby": "lib/index.js" }, - "files": [ - "lib" - ], + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-code-frame": "^6.26.0", "babel-runtime": "^6.26.0", @@ -32,15 +32,23 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "files": [ + "lib" + ], + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-cli#readme", "keywords": [ "gatsby" ], "license": "MIT", "main": "lib/index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir lib --ignore __tests__", - "watch": "babel -w src --out-dir lib --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir lib --ignore __tests__" }, "yargs": { "boolean-negation": false diff --git a/packages/gatsby-dev-cli/package.json b/packages/gatsby-dev-cli/package.json index 9989c8329ec8c..348bafdc7c897 100644 --- a/packages/gatsby-dev-cli/package.json +++ b/packages/gatsby-dev-cli/package.json @@ -1,4 +1,14 @@ { + "name": "gatsby-dev-cli", + "description": "CLI helpers for contributors working on Gatsby", + "version": "1.2.10", + "author": "Kyle Mathews ", + "bin": { + "gatsby-dev": "./dist/index.js" + }, + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "chokidar": "^1.7.0", @@ -8,26 +18,24 @@ "lodash": "^4.17.4", "yargs": "^8.0.2" }, - "name": "gatsby-dev-cli", - "version": "1.2.10", - "description": "CLI helpers for contributors working on Gatsby", - "main": "index.js", "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, - "bin": { - "gatsby-dev": "./dist/index.js" - }, - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "build": "babel src --out-dir dist", - "watch": "babel -w src --out-dir dist", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-dev-cli#readme", "keywords": [ "gatsby" ], - "author": "Kyle Mathews ", - "license": "MIT" + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir dist", + "prepublish": "cross-env NODE_ENV=production npm run build", + "test": "echo \"Error: no test specified\" && exit 1", + "watch": "babel -w src --out-dir dist" + } } diff --git a/packages/gatsby-image/package.json b/packages/gatsby-image/package.json index 1132951f54636..e4131ad805885 100644 --- a/packages/gatsby-image/package.json +++ b/packages/gatsby-image/package.json @@ -1,20 +1,11 @@ { "name": "gatsby-image", - "version": "1.0.35", "description": "Lazy-loading React image component with optional support for the blur-up effect.", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-component", - "react-component" - ], + "version": "1.0.35", "author": "Kyle Mathews ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "prop-types": "^15.6.0" @@ -22,5 +13,22 @@ "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-image#readme", + "keywords": [ + "gatsby", + "gatsby-component", + "react-component" + ], + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json index fabbe09f20629..4f83aef4cb5e6 100644 --- a/packages/gatsby-link/package.json +++ b/packages/gatsby-link/package.json @@ -1,32 +1,40 @@ { "name": "gatsby-link", - "version": "1.6.36", "description": "An enhanced Link component for Gatsby sites with support for resource prefetching", - "main": "index.js", - "types": "index.d.ts", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "version": "1.6.36", + "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "@types/history": "^4.6.2", + "@types/react-router-dom": "^4.2.2", + "babel-runtime": "^6.26.0", + "prop-types": "^15.5.8", + "ric": "^1.3.0" + }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-link#readme", "keywords": [ "gatsby", "gatsby-component" ], - "author": "Kyle Mathews ", "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" - }, + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" }, - "dependencies": { - "@types/history": "^4.6.2", - "@types/react-router-dom": "^4.2.2", - "babel-runtime": "^6.26.0", - "prop-types": "^15.5.8", - "ric": "^1.3.0" - } + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" + }, + "types": "index.d.ts" } diff --git a/packages/gatsby-module-loader/package.json b/packages/gatsby-module-loader/package.json index ee20c0f11937b..ece1aa8085247 100644 --- a/packages/gatsby-module-loader/package.json +++ b/packages/gatsby-module-loader/package.json @@ -1,16 +1,11 @@ { "name": "gatsby-module-loader", - "version": "1.0.9", "description": "_Based on https://github.com/webpack/bundle-loader and https://github.com/NekR/async-module-loader_", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "test": "echo \"Error: no test specified\" && exit 1", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, + "version": "1.0.9", "author": "Kyle Mathews ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "loader-utils": "^0.2.16" @@ -18,5 +13,18 @@ "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-module-loader#readme", + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "test": "echo \"Error: no test specified\" && exit 1", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-aphrodite/package.json b/packages/gatsby-plugin-aphrodite/package.json index 88cf9132085e3..c52c43efba173 100644 --- a/packages/gatsby-plugin-aphrodite/package.json +++ b/packages/gatsby-plugin-aphrodite/package.json @@ -1,26 +1,34 @@ { "name": "gatsby-plugin-aphrodite", - "version": "1.0.6", "description": "Stub description for gatsby-plugin-aphrodite", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "version": "1.0.6", + "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0" }, - "keywords": [ - "gatsby" - ], - "author": "Kyle Mathews <mathews.kyle@gmail.com>", - "license": "MIT", "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, - "dependencies": { - "babel-runtime": "^6.26.0" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-aphrodite#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-canonical-urls/package.json b/packages/gatsby-plugin-canonical-urls/package.json index 7cc6febcdb628..b6eccbf6ecc78 100644 --- a/packages/gatsby-plugin-canonical-urls/package.json +++ b/packages/gatsby-plugin-canonical-urls/package.json @@ -1,26 +1,34 @@ { "name": "gatsby-plugin-canonical-urls", - "version": "1.0.12", "description": "Stub description for gatsby-plugin-canonical-urls", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby" - ], + "version": "1.0.12", "author": "Kyle Mathews ", - "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "babel-runtime": "^6.26.0" }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-canonical-urls#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-catch-links/package.json b/packages/gatsby-plugin-catch-links/package.json index fb937da114d75..338b8e158d237 100644 --- a/packages/gatsby-plugin-catch-links/package.json +++ b/packages/gatsby-plugin-catch-links/package.json @@ -1,27 +1,35 @@ { "name": "gatsby-plugin-catch-links", - "version": "1.0.15", "description": "Intercepts local links from markdown and other non-react pages and does a client-side pushState to avoid the browser having to refresh the page.", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "version": "1.0.15", + "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0" + }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links#readme", "keywords": [ "gatsby", "gatsby-plugin" ], - "author": "Kyle Mathews ", "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" - }, - "dependencies": { - "babel-runtime": "^6.26.0" - }, + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-coffeescript/package.json b/packages/gatsby-plugin-coffeescript/package.json index def82d002e7ff..5b2418f22773c 100644 --- a/packages/gatsby-plugin-coffeescript/package.json +++ b/packages/gatsby-plugin-coffeescript/package.json @@ -3,6 +3,9 @@ "description": "Adds CoffeeScript support for Gatsby layouts and pages.", "version": "1.4.9", "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "contributors": [ "Noah Lange " ], @@ -15,19 +18,24 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, - "peerDependencies": { - "gatsby": "^1.0.0" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-coffeescript#readme", "keywords": [ - "gatsby", - "coffeescript" + "coffeescript", + "gatsby" ], "license": "MIT", "main": "index.js", + "peerDependencies": { + "gatsby": "^1.0.0" + }, "readme": "README.md", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-create-client-paths/package.json b/packages/gatsby-plugin-create-client-paths/package.json index 8978725cb0b5b..bd70a559c0ff7 100644 --- a/packages/gatsby-plugin-create-client-paths/package.json +++ b/packages/gatsby-plugin-create-client-paths/package.json @@ -1,18 +1,11 @@ { "name": "gatsby-plugin-create-client-paths", - "version": "1.0.4", "description": "Gatsby-plugin for creating paths that exist only on the client", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby" - ], + "version": "1.0.4", "author": "scott.eckenthal@gmail.com", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0" }, @@ -20,7 +13,22 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-create-client-paths#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-cxs/package.json b/packages/gatsby-plugin-cxs/package.json index c415bc58949e4..50c1f80ab95f4 100644 --- a/packages/gatsby-plugin-cxs/package.json +++ b/packages/gatsby-plugin-cxs/package.json @@ -1,26 +1,34 @@ { "name": "gatsby-plugin-cxs", - "version": "1.0.6", "description": "Stub description for gatsby-plugin-cxs", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "version": "1.0.6", + "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0" }, - "keywords": [ - "gatsby" - ], - "author": "Kyle Mathews <mathews.kyle@gmail.com>", - "license": "MIT", "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, - "dependencies": { - "babel-runtime": "^6.26.0" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-cxs#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-emotion/package.json b/packages/gatsby-plugin-emotion/package.json index 59a1ee6053bb4..1a670cc7c81c4 100644 --- a/packages/gatsby-plugin-emotion/package.json +++ b/packages/gatsby-plugin-emotion/package.json @@ -1,29 +1,37 @@ { "name": "gatsby-plugin-emotion", - "version": "1.1.11", "description": "Gatsby plugin to add support for Emotion", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "emotion" - ], + "version": "1.1.11", "author": "Tegan Churchill ", - "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "babel-runtime": "^6.26.0" }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-emotion#readme", + "keywords": [ + "emotion", + "gatsby" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "emotion": "7 || 8 ", "emotion-server": "7 || 8", "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-feed/package.json b/packages/gatsby-plugin-feed/package.json index f793167fa3a44..0e90c77ddd83c 100644 --- a/packages/gatsby-plugin-feed/package.json +++ b/packages/gatsby-plugin-feed/package.json @@ -1,25 +1,10 @@ { "name": "gatsby-plugin-feed", - "version": "1.3.17", "description": "Creates an RSS feed for your Gatsby site.", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "rss", - "atom", - "feed" - ], + "version": "1.3.17", "author": "Nicholas Young ", - "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "babel-runtime": "^6.26.0", @@ -27,7 +12,30 @@ "pify": "^3.0.0", "rss": "^1.2.2" }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-feed#readme", + "keywords": [ + "atom", + "feed", + "gatsby", + "gatsby-plugin", + "rss" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-glamor/package.json b/packages/gatsby-plugin-glamor/package.json index 74c615a371fa8..b2c84f5b4111a 100644 --- a/packages/gatsby-plugin-glamor/package.json +++ b/packages/gatsby-plugin-glamor/package.json @@ -3,6 +3,9 @@ "description": "Gatsby plugin to add support for Glamor", "version": "1.6.11", "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "glamor": "^2.20.29" @@ -11,9 +14,7 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, - "peerDependencies": { - "gatsby": "^1.0.0" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-glamor#readme", "keywords": [ "gatsby", "gatsby-plugin", @@ -21,9 +22,16 @@ ], "license": "MIT", "main": "index.js", + "peerDependencies": { + "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-glamorous/package.json b/packages/gatsby-plugin-glamorous/package.json index c8e7ec1d246ac..7f89ed1590bfb 100644 --- a/packages/gatsby-plugin-glamorous/package.json +++ b/packages/gatsby-plugin-glamorous/package.json @@ -1,26 +1,34 @@ { "name": "gatsby-plugin-glamorous", - "version": "1.0.6", "description": "Stub description for gatsby-plugin-glamorous", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "version": "1.0.6", + "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0" }, - "keywords": [ - "gatsby" - ], - "author": "Kyle Mathews <mathews.kyle@gmail.com>", - "license": "MIT", "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, - "dependencies": { - "babel-runtime": "^6.26.0" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-glamorous#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-google-analytics/package.json b/packages/gatsby-plugin-google-analytics/package.json index e6bd5e286a447..1cb73a2a5a6aa 100644 --- a/packages/gatsby-plugin-google-analytics/package.json +++ b/packages/gatsby-plugin-google-analytics/package.json @@ -3,10 +3,17 @@ "description": "Gatsby plugin to add google analytics onto a site", "version": "1.0.18", "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0" + }, "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-analytics#readme", "keywords": [ "gatsby", "gatsby-plugin", @@ -14,15 +21,16 @@ ], "license": "MIT", "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "dependencies": { - "babel-runtime": "^6.26.0" - }, "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-google-tagmanager/package.json b/packages/gatsby-plugin-google-tagmanager/package.json index edcfe3fcf20c8..17e0f964a1b83 100644 --- a/packages/gatsby-plugin-google-tagmanager/package.json +++ b/packages/gatsby-plugin-google-tagmanager/package.json @@ -3,10 +3,17 @@ "description": "Gatsby plugin to add google tagmanager onto a site", "version": "1.0.13", "author": "Thijs Koerselman ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0" + }, "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-tagmanager#readme", "keywords": [ "gatsby", "gatsby-plugin", @@ -15,15 +22,16 @@ ], "license": "MIT", "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "dependencies": { - "babel-runtime": "^6.26.0" - }, "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-jss/package.json b/packages/gatsby-plugin-jss/package.json index 905f7fbe9651b..60318bd277915 100644 --- a/packages/gatsby-plugin-jss/package.json +++ b/packages/gatsby-plugin-jss/package.json @@ -1,21 +1,11 @@ { "name": "gatsby-plugin-jss", - "version": "1.5.10", "description": "Gatsby plugin that adds SSR support for JSS", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "jss", - "react-jss" - ], + "version": "1.5.10", "author": "Vladimir Guguiev ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "react-jss": "^7.0.2" @@ -23,7 +13,25 @@ "devDependencies": { "babel-cli": "^6.26.0" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-jss#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "jss", + "react-jss" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-less/package.json b/packages/gatsby-plugin-less/package.json index d16a3f488205e..f4ba17beb81e2 100644 --- a/packages/gatsby-plugin-less/package.json +++ b/packages/gatsby-plugin-less/package.json @@ -3,6 +3,9 @@ "description": "Adds the ability to load and parse less-files to include in project your", "version": "1.1.4", "author": "Ming Aldrich-Gan ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "contributors": [ "Ole Martin Ruud (barskern.github.io)" ], @@ -18,15 +21,20 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, - "peerDependencies": { - "gatsby": "^1.0.0" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-less#readme", "keywords": [ "gatsby", "less" ], "license": "MIT", "main": "index.js", + "peerDependencies": { + "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__,theme-test.js", "prepublish": "cross-env NODE_ENV=production npm run build", diff --git a/packages/gatsby-plugin-lodash/package.json b/packages/gatsby-plugin-lodash/package.json index b848a7ab0ba19..ebc1f44d26ddb 100644 --- a/packages/gatsby-plugin-lodash/package.json +++ b/packages/gatsby-plugin-lodash/package.json @@ -1,18 +1,11 @@ { "name": "gatsby-plugin-lodash", - "version": "1.0.8", "description": "Easy modular Lodash builds. Adds the Lodash webpack & Babel plugins to your Gatsby build", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby" - ], + "version": "1.0.8", "author": "Kyle Mathews ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-plugin-lodash": "^3.2.11", "babel-runtime": "^6.26.0", @@ -23,7 +16,22 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-lodash#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json index 401e59b626a59..1d0bacd8d7f3d 100644 --- a/packages/gatsby-plugin-manifest/package.json +++ b/packages/gatsby-plugin-manifest/package.json @@ -1,31 +1,39 @@ { "name": "gatsby-plugin-manifest", - "version": "1.0.13", "description": "Gatsby plugin which adds a manifest.json to make sites progressive web apps", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "version": "1.0.13", + "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0", + "bluebird": "^3.5.0" + }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-manifest#readme", "keywords": [ "gatsby", "gatsby-plugin", "manifest.json", - "pwa", - "progressive-web-app" + "progressive-web-app", + "pwa" ], - "author": "Kyle Mathews ", "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" - }, - "dependencies": { - "babel-runtime": "^6.26.0", - "bluebird": "^3.5.0" - }, + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-netlify-cms/package.json b/packages/gatsby-plugin-netlify-cms/package.json index da47fe011c595..c5bf886f6b28c 100644 --- a/packages/gatsby-plugin-netlify-cms/package.json +++ b/packages/gatsby-plugin-netlify-cms/package.json @@ -1,21 +1,11 @@ { "name": "gatsby-plugin-netlify-cms", - "version": "1.0.6", "description": "A Gatsby plugin which generates the Netlify CMS single page app", - "main": "index.js", + "version": "1.0.6", "author": "Shawn Erquhart ", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "netlify", - "netlify-cms" - ], - "license": "MIT", "dependencies": { "html-webpack-include-assets-plugin": "^1.0.2", "html-webpack-plugin": "^2.30.1", @@ -25,7 +15,25 @@ "babel-cli": "^6.26.0", "cross-env": "^5.1.3" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify-cms#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "netlify", + "netlify-cms" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-netlify/package.json b/packages/gatsby-plugin-netlify/package.json index 3a763b1dea88c..fe12ae70023dc 100644 --- a/packages/gatsby-plugin-netlify/package.json +++ b/packages/gatsby-plugin-netlify/package.json @@ -1,27 +1,17 @@ { "name": "gatsby-plugin-netlify", - "version": "1.0.17", "description": "A Gatsby plugin which generates a _headers file for netlify", - "main": "index.js", + "version": "1.0.17", "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "contributors": [ { "name": "Nathanael Beisiegel", "email": "pknb.dev@gmail.com" } ], - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "netlify", - "http/2-server-push" - ], - "license": "MIT", "dependencies": { "babel-runtime": "^6.26.0", "fs-extra": "^4.0.2", @@ -32,7 +22,25 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-netlify#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "http/2-server-push", + "netlify" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-no-sourcemaps/package.json b/packages/gatsby-plugin-no-sourcemaps/package.json index 111183d4ef20b..39a2f0b941c09 100644 --- a/packages/gatsby-plugin-no-sourcemaps/package.json +++ b/packages/gatsby-plugin-no-sourcemaps/package.json @@ -1,13 +1,21 @@ { "name": "gatsby-plugin-no-sourcemaps", - "version": "1.0.2", "description": "Disable sourcemaps when building javascript", - "main": "index.js", + "version": "1.0.2", + "author": "Stuart Taylor ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-no-sourcemaps#readme", "keywords": [ "gatsby", - "webpack", - "sourcemaps" + "sourcemaps", + "webpack" ], - "author": "Stuart Taylor ", - "license": "MIT" + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + } } diff --git a/packages/gatsby-plugin-nprogress/package.json b/packages/gatsby-plugin-nprogress/package.json index 4730d363ebced..3a5081bb38f45 100644 --- a/packages/gatsby-plugin-nprogress/package.json +++ b/packages/gatsby-plugin-nprogress/package.json @@ -1,27 +1,35 @@ { "name": "gatsby-plugin-nprogress", - "version": "1.0.11", "description": "Shows page loading indicator when loading page resources is delayed", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby" - ], + "version": "1.0.11", "author": "Kyle Mathews", - "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "babel-runtime": "^6.26.0", "nprogress": "^0.2.0" }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-nprogress#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json index c65928d636b76..5a0792ef50223 100644 --- a/packages/gatsby-plugin-offline/package.json +++ b/packages/gatsby-plugin-offline/package.json @@ -3,10 +3,18 @@ "description": "Gatsby plugin which sets up a site to be able to run offline", "version": "1.0.13", "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0", + "sw-precache": "^5.0.0" + }, "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-offline#readme", "keywords": [ "gatsby", "gatsby-plugin", @@ -16,16 +24,16 @@ ], "license": "MIT", "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "dependencies": { - "babel-runtime": "^6.26.0", - "sw-precache": "^5.0.0" - }, "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-postcss-sass/package.json b/packages/gatsby-plugin-postcss-sass/package.json index 26893c1f21f3d..a49949bd1783d 100644 --- a/packages/gatsby-plugin-postcss-sass/package.json +++ b/packages/gatsby-plugin-postcss-sass/package.json @@ -3,6 +3,9 @@ "description": "Gatsby plugin to handle scss/sass files with integrated support for also processing with Postcss plugins", "version": "1.0.16", "author": "Scotty Eckenthal ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "extract-text-webpack-plugin": "^1.0.1", @@ -14,9 +17,7 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, - "peerDependencies": { - "gatsby": "^1.0.0" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-postcss-sass#readme", "keywords": [ "gatsby", "gatsby-plugin", @@ -26,10 +27,17 @@ ], "license": "MIT", "main": "index.js", + "peerDependencies": { + "gatsby": "^1.0.0" + }, "readme": "README.md", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-preact/package.json b/packages/gatsby-plugin-preact/package.json index dedc8b4cb6b82..531aef8a636a8 100644 --- a/packages/gatsby-plugin-preact/package.json +++ b/packages/gatsby-plugin-preact/package.json @@ -1,20 +1,11 @@ { "name": "gatsby-plugin-preact", - "version": "1.0.15", "description": "A Gatsby plugin which replaces React with Preact", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "preact" - ], + "version": "1.0.15", "author": "Kyle Mathews ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "preact": "^8.2.5", @@ -24,7 +15,24 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-preact#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "preact" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-react-css-modules/package.json b/packages/gatsby-plugin-react-css-modules/package.json index 30a49f774f96c..9f3187ace83af 100644 --- a/packages/gatsby-plugin-react-css-modules/package.json +++ b/packages/gatsby-plugin-react-css-modules/package.json @@ -1,25 +1,11 @@ { "name": "gatsby-plugin-react-css-modules", - "version": "1.0.12", "description": "Gatsby plugin that transforms styleName to className using compile time CSS module resolution", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "babel", - "babel-plugin", - "react", - "css modules", - "styleName", - "className" - ], + "version": "1.0.12", "author": "Ming Aldrich-Gan ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-plugin-react-css-modules": "^3.2.1", "babel-runtime": "^6.26.0", @@ -29,7 +15,29 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-css-modules#readme", + "keywords": [ + "babel", + "babel-plugin", + "className", + "css modules", + "gatsby", + "gatsby-plugin", + "react", + "styleName" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-react-helmet/package.json b/packages/gatsby-plugin-react-helmet/package.json index 5af3e151a80da..6f12f62137570 100644 --- a/packages/gatsby-plugin-react-helmet/package.json +++ b/packages/gatsby-plugin-react-helmet/package.json @@ -1,27 +1,35 @@ { "name": "gatsby-plugin-react-helmet", - "version": "2.0.4", "description": "Stub description for gatsby-plugin-react-helmet", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "version": "2.0.4", + "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0" }, - "keywords": [ - "gatsby" - ], - "author": "Kyle Mathews <mathews.kyle@gmail.com>", - "license": "MIT", "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, - "dependencies": { - "babel-runtime": "^6.26.0" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-helmet#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0", "react-helmet": ">=5.1.3" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-react-next/package.json b/packages/gatsby-plugin-react-next/package.json index ad409730750e1..5453b95ed1954 100644 --- a/packages/gatsby-plugin-react-next/package.json +++ b/packages/gatsby-plugin-react-next/package.json @@ -1,18 +1,11 @@ { "name": "gatsby-plugin-react-next", - "version": "1.0.8", "description": "Use React 16 with your Gatsby v1 site", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby" - ], + "version": "1.0.8", "author": "Kyle Mathews ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "core-js": "^2.5.1", @@ -23,7 +16,22 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-next#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-remove-trailing-slashes/package.json b/packages/gatsby-plugin-remove-trailing-slashes/package.json index 0838bb48c42a2..a3332cd0e80b6 100644 --- a/packages/gatsby-plugin-remove-trailing-slashes/package.json +++ b/packages/gatsby-plugin-remove-trailing-slashes/package.json @@ -1,18 +1,11 @@ { "name": "gatsby-plugin-remove-trailing-slashes", - "version": "1.0.4", "description": "Stub description for gatsby-plugin-remove-trailing-slashes", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby" - ], + "version": "1.0.4", "author": "scott.eckenthal@gmail.com", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0" }, @@ -20,7 +13,22 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-remove-trailing-slashes#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json index 0c13a12fa2067..f2e68430d4f2c 100644 --- a/packages/gatsby-plugin-sass/package.json +++ b/packages/gatsby-plugin-sass/package.json @@ -3,6 +3,9 @@ "description": "Gatsby plugin to handle scss/sass files", "version": "1.0.16", "author": "Daniel Farrell ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "extract-text-webpack-plugin": "^1.0.1", @@ -15,9 +18,7 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, - "peerDependencies": { - "gatsby": "^1.0.0" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sass#readme", "keywords": [ "gatsby", "sass", @@ -25,10 +26,17 @@ ], "license": "MIT", "main": "index.js", + "peerDependencies": { + "gatsby": "^1.0.0" + }, "readme": "README.md", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json index 55cf4467541f4..0bc8fa463443f 100644 --- a/packages/gatsby-plugin-sharp/package.json +++ b/packages/gatsby-plugin-sharp/package.json @@ -3,6 +3,9 @@ "description": "Wrapper of the Sharp image manipulation library for Gatsby plugins", "version": "1.6.27", "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "async": "^2.1.2", "babel-runtime": "^6.26.0", @@ -21,9 +24,7 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, - "peerDependencies": { - "gatsby": "^1.0.0" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sharp#readme", "keywords": [ "gatsby", "image", @@ -31,9 +32,16 @@ ], "license": "MIT", "main": "index.js", + "peerDependencies": { + "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-sitemap/package.json b/packages/gatsby-plugin-sitemap/package.json index a3ab2eceddebf..67249fdbb7e9d 100644 --- a/packages/gatsby-plugin-sitemap/package.json +++ b/packages/gatsby-plugin-sitemap/package.json @@ -1,27 +1,35 @@ { "name": "gatsby-plugin-sitemap", - "version": "1.2.12", "description": "Stub description for gatsby-plugin-sitemap", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby" - ], + "version": "1.2.12", "author": "Nicholas Young <nicholas@nicholaswyoung.com>", - "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "babel-runtime": "^6.26.0", "sitemap": "^1.12.0" }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sitemap#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-styled-components/package.json b/packages/gatsby-plugin-styled-components/package.json index 6ce8fc4f4eccc..87b2ebb747715 100644 --- a/packages/gatsby-plugin-styled-components/package.json +++ b/packages/gatsby-plugin-styled-components/package.json @@ -3,16 +3,16 @@ "description": "Gatsby plugin to add support for styled components", "version": "2.0.5", "author": "Guten Ye ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0" }, "devDependencies": { "babel-cli": "^6.26.0" }, - "peerDependencies": { - "gatsby": "^1.0.0", - "styled-components": ">= 2.0.0" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-components#readme", "keywords": [ "gatsby", "gatsby-plugin", @@ -20,8 +20,16 @@ ], "license": "MIT", "main": "index.js", + "peerDependencies": { + "gatsby": "^1.0.0", + "styled-components": ">= 2.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { - "prepublish": "npm run build", - "build": "babel src --out-dir ." + "build": "babel src --out-dir .", + "prepublish": "npm run build" } } diff --git a/packages/gatsby-plugin-styled-jsx/package.json b/packages/gatsby-plugin-styled-jsx/package.json index d09321f3669fa..0ccea3938f063 100644 --- a/packages/gatsby-plugin-styled-jsx/package.json +++ b/packages/gatsby-plugin-styled-jsx/package.json @@ -1,27 +1,35 @@ { "name": "gatsby-plugin-styled-jsx", - "version": "2.0.2", "description": "Adds SSR support for styled-jsx", + "version": "2.0.2", "author": "Tim Suchanek ", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" }, - "keywords": [ - "gatsby", - "styled-jsx" - ], - "license": "MIT", "dependencies": { "babel-runtime": "^6.26.0" }, "devDependencies": { "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-jsx#readme", + "keywords": [ + "gatsby", + "styled-jsx" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0", "styled-jsx": "^2.2.1" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-styletron/package.json b/packages/gatsby-plugin-styletron/package.json index 49b970b192546..866aea5650017 100644 --- a/packages/gatsby-plugin-styletron/package.json +++ b/packages/gatsby-plugin-styletron/package.json @@ -1,21 +1,10 @@ { "name": "gatsby-plugin-styletron", - "version": "1.0.11", "description": "Stub description for gatsby-plugin-styletron", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby" - ], + "version": "1.0.11", "author": "Nadiia Dmytrenko <nadiia.dmytrenko@gmail.com>", - "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "babel-runtime": "^6.26.0", @@ -23,7 +12,26 @@ "styletron-react": "^3.0.0-rc.2", "styletron-server": "^3.0.0-rc.1" }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styletron#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-stylus/package.json b/packages/gatsby-plugin-stylus/package.json index 3f6b8e23183bc..7757c1aba3c7c 100644 --- a/packages/gatsby-plugin-stylus/package.json +++ b/packages/gatsby-plugin-stylus/package.json @@ -3,6 +3,9 @@ "description": "Gatsby support for Stylus", "version": "1.1.14", "author": "Ian Sinnott ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "extract-text-webpack-plugin": "^1.0.1", @@ -14,9 +17,7 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, - "peerDependencies": { - "gatsby": "^1.0.0" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-stylus#readme", "keywords": [ "gatsby", "gatsby-plugin", @@ -24,10 +25,17 @@ ], "license": "MIT", "main": "./gatsby-node.js", + "peerDependencies": { + "gatsby": "^1.0.0" + }, "readme": "README.md", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-twitter/package.json b/packages/gatsby-plugin-twitter/package.json index c0f5cc0e318df..650075ff13c35 100644 --- a/packages/gatsby-plugin-twitter/package.json +++ b/packages/gatsby-plugin-twitter/package.json @@ -1,26 +1,34 @@ { "name": "gatsby-plugin-twitter", - "version": "1.0.16", "description": "Stub description for gatsby-plugin-twitter", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby" - ], + "version": "1.0.16", "author": "Kyle Mathews ", - "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "babel-runtime": "^6.26.0" }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-twitter#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json index 9c3ba0ddfdcf9..43a51835ae81c 100644 --- a/packages/gatsby-plugin-typescript/package.json +++ b/packages/gatsby-plugin-typescript/package.json @@ -1,8 +1,11 @@ { "name": "gatsby-plugin-typescript", - "version": "1.4.15", "description": "Adds TypeScript support for Gatsby layouts and pages.", + "version": "1.4.15", "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "contributors": [ "Noah Lange " ], @@ -15,18 +18,23 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, - "peerDependencies": { - "gatsby": "^1.0.0" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-typescript#readme", "keywords": [ "gatsby", "typescript" ], "license": "MIT", "main": "index.js", + "peerDependencies": { + "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir .", - "watch": "babel -w src --out-dir .", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir ." } } diff --git a/packages/gatsby-plugin-typography/package.json b/packages/gatsby-plugin-typography/package.json index aedcf8b42a114..6f9979e307f9b 100644 --- a/packages/gatsby-plugin-typography/package.json +++ b/packages/gatsby-plugin-typography/package.json @@ -1,30 +1,38 @@ { "name": "gatsby-plugin-typography", - "version": "1.7.13", "description": "Gatsby plugin to setup server rendering of Typography.js' CSS", - "main": "index.js", + "version": "1.7.13", + "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "react-typography": "^0.16.1", "typography": "^0.16.0" }, - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "devDependencies": { + "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-typography#readme", "keywords": [ "gatsby", "gatsby-plugin", "typography", "typography.js" ], - "author": "Kyle Mathews ", "license": "MIT", - "devDependencies": { - "cross-env": "^5.0.5" - }, + "main": "index.js", "peerDependencies": { "gatsby": "^1.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-react-router-scroll/package.json b/packages/gatsby-react-router-scroll/package.json index 037efe0f67d1a..5161c35247a0b 100644 --- a/packages/gatsby-react-router-scroll/package.json +++ b/packages/gatsby-react-router-scroll/package.json @@ -3,6 +3,9 @@ "description": "React Router scroll management forked from https://github.com/ytase/react-router-scroll for Gatsby", "version": "1.0.10", "author": "Jimmy Jia", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "scroll-behavior": "^0.9.9", @@ -14,6 +17,7 @@ "babel-preset-stage-1": "^6.24.1", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-react-router-scroll#readme", "keywords": [ "gatsby" ], @@ -24,6 +28,10 @@ "react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0", "react-router-dom": "^4.0" }, + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", "prepublish": "cross-env NODE_ENV=production npm run build", diff --git a/packages/gatsby-remark-autolink-headers/package.json b/packages/gatsby-remark-autolink-headers/package.json index d970d7db3fb1e..5389ecaac0c5e 100644 --- a/packages/gatsby-remark-autolink-headers/package.json +++ b/packages/gatsby-remark-autolink-headers/package.json @@ -3,6 +3,9 @@ "description": "Gatsby plugin to autolink headers in markdown processed by Remark", "version": "1.4.11", "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "github-slugger": "^1.1.1", @@ -13,6 +16,7 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-autolink-headers#readme", "keywords": [ "gatsby", "gatsby-plugin", @@ -20,9 +24,13 @@ ], "license": "MIT", "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-remark-code-repls/package.json b/packages/gatsby-remark-code-repls/package.json index 31f168f125fa5..9513f2a7bf393 100644 --- a/packages/gatsby-remark-code-repls/package.json +++ b/packages/gatsby-remark-code-repls/package.json @@ -3,6 +3,9 @@ "description": "Gatsby plugin to auto-generate links to popular REPLs like Babel and Codepen", "version": "1.0.8", "author": "Brian Vaughn ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "lz-string": "^1.4.4", @@ -15,19 +18,24 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-code-repls#readme", "keywords": [ + "babel", + "codepen", "gatsby", "gatsby-plugin", "remark", - "babel", - "codepen", "repl" ], "license": "MIT", "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-remark-copy-linked-files/package.json b/packages/gatsby-remark-copy-linked-files/package.json index b3a26f5a77bb7..de1d402976e12 100644 --- a/packages/gatsby-remark-copy-linked-files/package.json +++ b/packages/gatsby-remark-copy-linked-files/package.json @@ -3,6 +3,9 @@ "description": "Find files which are linked to from markdown and copy them to the public directory", "version": "1.5.26", "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "cheerio": "^1.0.0-rc.2", @@ -17,6 +20,7 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-copy-linked-files#readme", "keywords": [ "gatsby", "gatsby-plugin", @@ -25,9 +29,13 @@ ], "license": "MIT", "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-remark-custom-blocks/package.json b/packages/gatsby-remark-custom-blocks/package.json index bb474761424b2..eb317b7d8ff29 100644 --- a/packages/gatsby-remark-custom-blocks/package.json +++ b/packages/gatsby-remark-custom-blocks/package.json @@ -1,35 +1,39 @@ { "name": "gatsby-remark-custom-blocks", - "version": "1.0.2", "description": "Gatsby remark plugin for adding custom blocks in markdown", - "main": "index.js", - "scripts": { - "build": "babel --out-dir . --ignore __tests__ src", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "version": "1.0.2", + "author": "Mohammad Asad Mohammad ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" }, - "repository": "https://github.com/AlahmadiQ8/gatsby-remark-custom-blocks", + "dependencies": { + "babel-runtime": "^6.26.0", + "remark-custom-blocks": "^1.0.6" + }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5", + "rimraf": "^2.6.2", + "unist-util-find": "^1.0.1" + }, + "files": [ + "index.js", + "README.md" + ], + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-custom-blocks#readme", "keywords": [ "gatsby", "gatsby-plugin", "markdown", "remark" ], - "author": "Mohammad Asad Mohammad ", "license": "MIT", + "main": "index.js", "private": false, - "files": [ - "index.js", - "README.md" - ], - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5", - "rimraf": "^2.6.2", - "unist-util-find": "^1.0.1" - }, - "dependencies": { - "babel-runtime": "^6.26.0", - "remark-custom-blocks": "^1.0.6" + "repository": "https://github.com/AlahmadiQ8/gatsby-remark-custom-blocks", + "scripts": { + "build": "babel --out-dir . --ignore __tests__ src", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-remark-embed-snippet/package.json b/packages/gatsby-remark-embed-snippet/package.json index 4a3606344c276..c2039644b4326 100644 --- a/packages/gatsby-remark-embed-snippet/package.json +++ b/packages/gatsby-remark-embed-snippet/package.json @@ -3,6 +3,9 @@ "description": "Gatsby plugin to embed formatted code snippets within markdown", "version": "1.0.8", "author": "Brian Vaughn ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "gatsby-remark-prismjs": "^1.2.14", @@ -14,17 +17,22 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-embed-snippet#readme", "keywords": [ "gatsby", "gatsby-plugin", - "remark", - "prism" + "prism", + "remark" ], "license": "MIT", "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json index 1b1759e253d2e..474deced111b8 100644 --- a/packages/gatsby-remark-images/package.json +++ b/packages/gatsby-remark-images/package.json @@ -1,21 +1,10 @@ { "name": "gatsby-remark-images", - "version": "1.5.43", "description": "Processes images in markdown so they can be used in the production build.", - "main": "index.js", - "keywords": [ - "gatsby", - "gatsby-plugin", - "markdown", - "remark", - "image", - "responsive images" - ], + "version": "1.5.43", "author": "Kyle Mathews ", - "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "babel-runtime": "^6.26.0", @@ -26,9 +15,28 @@ "slash": "^1.0.0", "unist-util-select": "^1.5.0" }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-images#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "image", + "markdown", + "remark", + "responsive images" + ], + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-remark-katex/package.json b/packages/gatsby-remark-katex/package.json index e8d731f207fc4..6f6a8baa109d4 100644 --- a/packages/gatsby-remark-katex/package.json +++ b/packages/gatsby-remark-katex/package.json @@ -3,26 +3,34 @@ "description": "Transform math nodes to html markup", "version": "1.0.10", "author": "Jeffrey Xiao ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "katex": "^0.8.3", "remark-math": "^0.2.4", "unist-util-visit": "^1.1.1" }, + "devDependencies": { + "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-katex#readme", "keywords": [ "gatsby", "gatsby-plugin", - "remark", - "katex" + "katex", + "remark" ], "license": "MIT", "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "devDependencies": { - "cross-env": "^5.0.5" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-remark-prismjs/package.json b/packages/gatsby-remark-prismjs/package.json index cb0ccb805d46a..1b12884123e7e 100644 --- a/packages/gatsby-remark-prismjs/package.json +++ b/packages/gatsby-remark-prismjs/package.json @@ -3,6 +3,9 @@ "description": "Adds syntax highlighting to code blocks at build time using PrismJS", "version": "1.2.14", "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "parse-numeric-range": "0.0.2", @@ -14,6 +17,7 @@ "cross-env": "^5.1.3", "remark": "^7.0.1" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-prismjs#readme", "keywords": [ "gatsby", "gatsby-plugin", @@ -22,9 +26,13 @@ ], "license": "MIT", "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-remark-responsive-iframe/package.json b/packages/gatsby-remark-responsive-iframe/package.json index 067e7d5cab035..71373f939bbed 100644 --- a/packages/gatsby-remark-responsive-iframe/package.json +++ b/packages/gatsby-remark-responsive-iframe/package.json @@ -1,25 +1,10 @@ { "name": "gatsby-remark-responsive-iframe", - "version": "1.4.16", "description": "Make iframes in Markdown processed by Remark responsive", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "remark" - ], + "version": "1.4.16", "author": "Kyle Mathews ", - "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5", - "remark": "^7.0.0", - "unist-util-find": "^1.0.1" + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "babel-runtime": "^6.26.0", @@ -27,5 +12,28 @@ "cheerio": "^1.0.0-rc.2", "lodash": "^4.17.4", "unist-util-visit": "^1.1.1" + }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5", + "remark": "^7.0.0", + "unist-util-find": "^1.0.1" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-responsive-iframe#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "remark" + ], + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-remark-smartypants/package.json b/packages/gatsby-remark-smartypants/package.json index a70aaea1ac257..f9693545f7618 100644 --- a/packages/gatsby-remark-smartypants/package.json +++ b/packages/gatsby-remark-smartypants/package.json @@ -1,20 +1,11 @@ { "name": "gatsby-remark-smartypants", - "version": "1.4.10", "description": "Use retext-smartypants to auto-enhance typography of markdown", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "smartypants" - ], + "version": "1.4.10", "author": "Kyle Mathews ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "retext": "^4.0.0", @@ -24,5 +15,22 @@ "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-smartypants#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "smartypants" + ], + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index ac61e6e9ad5a6..323f1a63037b7 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -1,19 +1,11 @@ { "name": "gatsby-source-contentful", - "version": "1.3.37", "description": "Gatsby source plugin for building websites using the Contentful CMS as a data source", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "gatsby-source-plugin" - ], + "version": "1.3.37", "author": "Marcus Ericsson (mericsson.com)", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "axios": "^0.16.1", "babel-runtime": "^6.26.0", @@ -28,5 +20,21 @@ }, "devDependencies": { "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-contentful#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "gatsby-source-plugin" + ], + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json index 783e8e25a1af6..8bc85a05d278b 100644 --- a/packages/gatsby-source-drupal/package.json +++ b/packages/gatsby-source-drupal/package.json @@ -1,19 +1,11 @@ { "name": "gatsby-source-drupal", - "version": "2.0.19", "description": "Gatsby source plugin for building websites using the Drupal CMS as a data source", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "gatsby-source-plugin" - ], + "version": "2.0.19", "author": "Kyle Mathews ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "axios": "^0.16.1", "babel-runtime": "^6.26.0", @@ -23,5 +15,21 @@ }, "devDependencies": { "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-drupal#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "gatsby-source-plugin" + ], + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-source-faker/package.json b/packages/gatsby-source-faker/package.json index 053190b85d8fd..695688c82c371 100644 --- a/packages/gatsby-source-faker/package.json +++ b/packages/gatsby-source-faker/package.json @@ -1,25 +1,33 @@ { "name": "gatsby-source-faker", - "version": "1.0.1", "description": "A gatsby plugin to get fake data for testing", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build", - "watch": "babel -w src --out-dir . --ignore __tests__" + "version": "1.0.1", + "author": "Pavithra Kodmad", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0", + "faker": "^4.1.0" + }, + "devDependencies": { + "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-faker#readme", "keywords": [ "gatsby", "gatsby-plugin", "gatsby-source-plugin" ], - "author": "Pavithra Kodmad", "license": "MIT", - "dependencies": { - "babel-runtime": "^6.26.0", - "faker": "^4.1.0" + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" }, - "devDependencies": { - "cross-env": "^5.0.5" + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json index a8414cb378142..28e49724b104b 100644 --- a/packages/gatsby-source-filesystem/package.json +++ b/packages/gatsby-source-filesystem/package.json @@ -1,18 +1,11 @@ { "name": "gatsby-source-filesystem", - "version": "1.5.18", "description": "Gatsby plugin which parses files within a directory for further parsing by other plugins", - "license": "MIT", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin" - ], + "version": "1.5.18", "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-cli": "^6.26.0", "babel-runtime": "^6.26.0", @@ -28,5 +21,20 @@ }, "devDependencies": { "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem#readme", + "keywords": [ + "gatsby", + "gatsby-plugin" + ], + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-source-hacker-news/package.json b/packages/gatsby-source-hacker-news/package.json index d29f344342827..311b9ffde4c5e 100644 --- a/packages/gatsby-source-hacker-news/package.json +++ b/packages/gatsby-source-hacker-news/package.json @@ -1,19 +1,11 @@ { "name": "gatsby-source-hacker-news", - "version": "1.0.9", "description": "Gatsby source plugin for building websites using Hacker News as a data source", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "gatsby-source-plugin" - ], + "version": "1.0.9", "author": "Kyle Mathews ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "axios": "^0.16.1", "babel-runtime": "^6.26.0", @@ -21,5 +13,21 @@ }, "devDependencies": { "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-hacker-news#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "gatsby-source-plugin" + ], + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-source-lever/package.json b/packages/gatsby-source-lever/package.json index 6e90e212481e2..59e31e3c70278 100644 --- a/packages/gatsby-source-lever/package.json +++ b/packages/gatsby-source-lever/package.json @@ -1,5 +1,11 @@ { + "name": "gatsby-source-lever", + "description": "Gatsby source plugin for building websites using the Lever.co Recruitment Software as a data source.", + "version": "1.0.7", "author": "Sebastien Fichot ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "bundleDependencies": false, "dependencies": { "axios": "^0.16.1", @@ -11,21 +17,23 @@ "lodash": "^4.17.4" }, "deprecated": false, - "description": "Gatsby source plugin for building websites using the Lever.co Recruitment Software as a data source.", + "devDependencies": { + "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-lever#readme", "keywords": [ "gatsby", "gatsby-plugin", "gatsby-source-plugin" ], "license": "MIT", - "name": "gatsby-source-lever", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "version": "1.0.7", - "devDependencies": { - "cross-env": "^5.0.5" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-source-medium/package.json b/packages/gatsby-source-medium/package.json index f688461e45c4e..2e69e9c34c308 100644 --- a/packages/gatsby-source-medium/package.json +++ b/packages/gatsby-source-medium/package.json @@ -3,6 +3,9 @@ "description": "Gatsby source plugin for building websites using Medium as a data source", "version": "1.0.11", "author": "Robert Vogt ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "axios": "^0.16.2", "babel-runtime": "^6.26.0" @@ -11,11 +14,16 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-medium#readme", "keywords": [ "gatsby" ], "license": "MIT", "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", "prepublish": "cross-env NODE_ENV=production npm run build", diff --git a/packages/gatsby-source-mongodb/package.json b/packages/gatsby-source-mongodb/package.json index 3921c900b200c..2f77c40e93ed9 100644 --- a/packages/gatsby-source-mongodb/package.json +++ b/packages/gatsby-source-mongodb/package.json @@ -1,25 +1,33 @@ { "name": "gatsby-source-mongodb", - "version": "1.5.13", "description": "Stub description for gatsby-source-mongodb", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby" - ], + "version": "1.5.13", "author": "jhermans85@hotmail.com", - "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "babel-runtime": "^6.26.0", "lodash": "^4.17.4", "mongodb": "^2.2.30" + }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-mongodb#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-source-wordpress-com/package.json b/packages/gatsby-source-wordpress-com/package.json index 6f6262c232cb7..9b52592734cef 100644 --- a/packages/gatsby-source-wordpress-com/package.json +++ b/packages/gatsby-source-wordpress-com/package.json @@ -1,23 +1,31 @@ { "name": "gatsby-source-wordpress-com", - "version": "1.0.5", "description": "Stub description for gatsby-source-wordpress-com", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "version": "1.0.5", + "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0" + }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-wordpress-com#readme", "keywords": [ "gatsby" ], - "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" }, - "dependencies": { - "babel-runtime": "^6.26.0" + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json index 452c9ef3943a2..525d332ce64dc 100644 --- a/packages/gatsby-source-wordpress/package.json +++ b/packages/gatsby-source-wordpress/package.json @@ -3,6 +3,9 @@ "description": "Gatsby source plugin for building websites using the Wordpress CMS as a data source.", "version": "2.0.54", "author": "Sebastien Fichot ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "bundleDependencies": false, "dependencies": { "axios": "^0.16.1", @@ -19,12 +22,17 @@ "devDependencies": { "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-wordpress#readme", "keywords": [ "gatsby", "gatsby-plugin", "gatsby-source-plugin" ], "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", "prepublish": "cross-env NODE_ENV=production npm run build", diff --git a/packages/gatsby-transformer-csv/package.json b/packages/gatsby-transformer-csv/package.json index 14a487c8c4ca6..4beadbb326689 100644 --- a/packages/gatsby-transformer-csv/package.json +++ b/packages/gatsby-transformer-csv/package.json @@ -1,28 +1,36 @@ { "name": "gatsby-transformer-csv", - "version": "1.3.7", "description": "Gatsby transformer plugin for CSV files", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "version": "1.3.7", + "author": "Sonal Saldanha ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0", + "bluebird": "^3.5.0", + "csvtojson": "^1.1" + }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5", + "json2csv": "^3.7" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-csv#readme", "keywords": [ - "gatsby", "csv", + "gatsby", "gatsby-plugin" ], - "author": "Sonal Saldanha ", "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5", - "json2csv": "^3.7" + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" }, - "dependencies": { - "babel-runtime": "^6.26.0", - "bluebird": "^3.5.0", - "csvtojson": "^1.1" + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-transformer-documentationjs/package.json b/packages/gatsby-transformer-documentationjs/package.json index 8d392aa609a51..572c59963b8a7 100644 --- a/packages/gatsby-transformer-documentationjs/package.json +++ b/packages/gatsby-transformer-documentationjs/package.json @@ -1,21 +1,11 @@ { "name": "gatsby-transformer-documentationjs", - "version": "1.4.8", "description": "Gatsby transformer plugin which uses Documentation.js to extract JavaScript documentation", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "gatsby-transformer", - "documentation.js" - ], + "version": "1.4.8", "author": "Kyle Mathews", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "documentation": "^4.0.0-rc.1" @@ -23,5 +13,23 @@ "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-documentationjs#readme", + "keywords": [ + "documentation.js", + "gatsby", + "gatsby-plugin", + "gatsby-transformer" + ], + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-transformer-docx/package.json b/packages/gatsby-transformer-docx/package.json index a83345af96029..2e17a54a910f3 100644 --- a/packages/gatsby-transformer-docx/package.json +++ b/packages/gatsby-transformer-docx/package.json @@ -1,23 +1,31 @@ { "name": "gatsby-transformer-docx", - "version": "1.0.5", "description": "Stub description for gatsby-transformer-docx", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "version": "1.0.5", + "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0" + }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-docx#readme", "keywords": [ "gatsby" ], - "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" }, - "dependencies": { - "babel-runtime": "^6.26.0" + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-transformer-excel/package.json b/packages/gatsby-transformer-excel/package.json index a8bfbb939ca90..b8cba080437e4 100644 --- a/packages/gatsby-transformer-excel/package.json +++ b/packages/gatsby-transformer-excel/package.json @@ -1,20 +1,11 @@ { "name": "gatsby-transformer-excel", - "version": "1.0.3", "description": "Gatsby transformer plugin for Excel spreadsheets", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "excel", - "gatsby-plugin" - ], + "version": "1.0.3", "author": "SheetJS ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "xlsx": "^0.11.5" @@ -22,5 +13,22 @@ "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-excel#readme", + "keywords": [ + "excel", + "gatsby", + "gatsby-plugin" + ], + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-transformer-hjson/package.json b/packages/gatsby-transformer-hjson/package.json index 430485c0488af..4170fe838f6a0 100644 --- a/packages/gatsby-transformer-hjson/package.json +++ b/packages/gatsby-transformer-hjson/package.json @@ -1,19 +1,11 @@ { "name": "gatsby-transformer-hjson", - "version": "1.0.2", "description": "Gatsby transformer plugin for HJSON files", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "hjson" - ], + "version": "1.0.2", "author": "Remi Barraquand ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "bluebird": "^3.5.0", @@ -22,5 +14,21 @@ "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-hjson#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "hjson" + ], + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-transformer-javascript-static-exports/package.json b/packages/gatsby-transformer-javascript-static-exports/package.json index 2bd57f4c3b432..74abc16988378 100644 --- a/packages/gatsby-transformer-javascript-static-exports/package.json +++ b/packages/gatsby-transformer-javascript-static-exports/package.json @@ -1,19 +1,11 @@ { "name": "gatsby-transformer-javascript-static-exports", - "version": "1.3.8", "description": "Gatsby transformer plugin for JavaScript to extract exports.data statically.", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "js" - ], + "version": "1.3.8", "author": "Jacob Bolda ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "babel-traverse": "^6.24.1", @@ -22,5 +14,21 @@ }, "devDependencies": { "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-static-exports#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "js" + ], + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-transformer-json/package.json b/packages/gatsby-transformer-json/package.json index 7aca4ac42d2df..8e6abe4d7b7df 100644 --- a/packages/gatsby-transformer-json/package.json +++ b/packages/gatsby-transformer-json/package.json @@ -1,19 +1,11 @@ { "name": "gatsby-transformer-json", - "version": "1.0.14", "description": "Gatsby transformer plugin for JSON files", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "json" - ], + "version": "1.0.14", "author": "Kyle Mathews ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "bluebird": "^3.5.0" @@ -21,5 +13,21 @@ "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-json#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "json" + ], + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-transformer-pdf/package.json b/packages/gatsby-transformer-pdf/package.json index c3e4f227eb3ab..270444bc7f459 100644 --- a/packages/gatsby-transformer-pdf/package.json +++ b/packages/gatsby-transformer-pdf/package.json @@ -1,23 +1,31 @@ { "name": "gatsby-transformer-pdf", - "version": "1.0.5", "description": "Stub description for gatsby-transformer-pdf", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "version": "1.0.5", + "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0" + }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-pdf#readme", "keywords": [ "gatsby" ], - "author": "Kyle Mathews <mathews.kyle@gmail.com>", "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" }, - "dependencies": { - "babel-runtime": "^6.26.0" + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-transformer-pdfimages/package.json b/packages/gatsby-transformer-pdfimages/package.json index 84c972706e72e..0717d1d9488c2 100644 --- a/packages/gatsby-transformer-pdfimages/package.json +++ b/packages/gatsby-transformer-pdfimages/package.json @@ -1,20 +1,28 @@ { "name": "gatsby-transformer-pdfimages", - "version": "1.0.4", "description": "Gatsby transformer plugin for extracting images from PDFs", - "main": "index.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "version": "1.0.4", + "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-pdfimages#readme", "keywords": [ "gatsby", "gatsby-plugin", "gatsby-transformer", "pdfimage" ], - "author": "Kyle Mathews ", "license": "MIT", - "dependencies": { - "babel-runtime": "^6.26.0" + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" } } diff --git a/packages/gatsby-transformer-react-docgen/package.json b/packages/gatsby-transformer-react-docgen/package.json index 4d4a10b213395..67fdd68c9fc56 100644 --- a/packages/gatsby-transformer-react-docgen/package.json +++ b/packages/gatsby-transformer-react-docgen/package.json @@ -1,21 +1,11 @@ { "name": "gatsby-transformer-react-docgen", - "version": "1.0.12", "description": "Expose React component metadata and prop information as GraphQL types", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "react", - "react-docgen" - ], + "version": "1.0.12", "author": "Jason Quense ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "babel-types": "^6.24.1", @@ -27,5 +17,23 @@ "babel-cli": "^6.26.0", "cross-env": "^5.0.5", "lodash": "^4.17.4" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-react-docgen#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "react", + "react-docgen" + ], + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json index f5daf5f0a1650..88c4183bd54ce 100644 --- a/packages/gatsby-transformer-remark/package.json +++ b/packages/gatsby-transformer-remark/package.json @@ -3,6 +3,9 @@ "description": "Gatsby transformer plugin for Markdown using the Remark library and ecosystem", "version": "1.7.31", "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "bluebird": "^3.5.0", @@ -30,6 +33,7 @@ "babel-plugin-transform-object-rest-spread": "^6.20.2", "cross-env": "^5.0.5" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-remark#readme", "keywords": [ "gatsby", "gatsby-plugin", @@ -37,9 +41,13 @@ "remark" ], "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-transformer-screenshot/package.json b/packages/gatsby-transformer-screenshot/package.json index dd55b69ee156f..e833e87896137 100644 --- a/packages/gatsby-transformer-screenshot/package.json +++ b/packages/gatsby-transformer-screenshot/package.json @@ -1,8 +1,11 @@ { "name": "gatsby-transformer-screenshot", - "version": "1.0.1", "description": "Gatsby transformer plugin that uses AWS Lambda to take screenshots of websites", - "main": "index.js", + "version": "1.0.1", + "author": "David Beckley ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "axios": "^0.17.1" }, @@ -10,18 +13,23 @@ "babel-cli": "^6.26.0", "cross-env": "^5.1.3" }, - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build", - "build-lambda-package": "npm run prepare-lambda-package && cp chrome/headless_shell.tar.gz lambda-dist && cd lambda-dist && zip -rq ../lambda-package.zip .", - "prepare-lambda-package": "babel lambda --out-dir lambda-dist && cp lambda/package.json lambda-dist/package.json && cd lambda-dist && PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 npm install --production" - }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-screenshot#readme", "keywords": [ "gatsby", "gatsby-plugin", "screenshot" ], - "author": "David Beckley ", - "license": "MIT" + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "build-lambda-package": "npm run prepare-lambda-package && cp chrome/headless_shell.tar.gz lambda-dist && cd lambda-dist && zip -rq ../lambda-package.zip .", + "prepare-lambda-package": "babel lambda --out-dir lambda-dist && cp lambda/package.json lambda-dist/package.json && cd lambda-dist && PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 npm install --production", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" + } } diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json index 3a8c0e1a63d8a..967eb5597bf6b 100644 --- a/packages/gatsby-transformer-sharp/package.json +++ b/packages/gatsby-transformer-sharp/package.json @@ -1,20 +1,11 @@ { "name": "gatsby-transformer-sharp", - "version": "1.6.18", "description": "Gatsby transformer plugin for images using Sharp", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "sharp", - "image" - ], + "version": "1.6.18", "author": "Kyle Mathews ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "bluebird": "^3.5.0", @@ -24,5 +15,22 @@ "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-sharp#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "image", + "sharp" + ], + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-transformer-toml/package.json b/packages/gatsby-transformer-toml/package.json index 2c32c410564dd..dcffc9612a236 100644 --- a/packages/gatsby-transformer-toml/package.json +++ b/packages/gatsby-transformer-toml/package.json @@ -1,19 +1,11 @@ { "name": "gatsby-transformer-toml", - "version": "1.1.7", "description": "Gatsby transformer plugin for toml", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "toml" - ], + "version": "1.1.7", "author": "Ruben Harutyunyan ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "bluebird": "^3.5.0", @@ -22,5 +14,21 @@ "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-toml#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "toml" + ], + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-transformer-xml/package.json b/packages/gatsby-transformer-xml/package.json index d47d4441e80d4..79ed3ace68880 100644 --- a/packages/gatsby-transformer-xml/package.json +++ b/packages/gatsby-transformer-xml/package.json @@ -1,26 +1,34 @@ { "name": "gatsby-transformer-xml", - "version": "1.0.11", "description": "Stub description for gatsby-transformer-xml", - "main": "index.js", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby" - ], - "author": "Kyle Mathews <mathews.kyle@gmail.com>", - "license": "MIT", - "devDependencies": { - "babel-cli": "^6.26.0", - "cross-env": "^5.0.5" + "version": "1.0.11", + "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "babel-runtime": "^6.26.0", "bluebird": "^3.5.0", "lodash": "^4.17.4", "xml-parser": "^1.2.1" + }, + "devDependencies": { + "babel-cli": "^6.26.0", + "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-xml#readme", + "keywords": [ + "gatsby" + ], + "license": "MIT", + "main": "index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby-transformer-yaml/package.json b/packages/gatsby-transformer-yaml/package.json index cb5845ea34255..4ea13a574e623 100644 --- a/packages/gatsby-transformer-yaml/package.json +++ b/packages/gatsby-transformer-yaml/package.json @@ -1,19 +1,11 @@ { "name": "gatsby-transformer-yaml", - "version": "1.5.14", "description": "Gatsby transformer plugin for yaml", - "scripts": { - "build": "babel src --out-dir . --ignore __tests__", - "watch": "babel -w src --out-dir . --ignore __tests__", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "keywords": [ - "gatsby", - "gatsby-plugin", - "yaml" - ], + "version": "1.5.14", "author": "Kyle Mathews ", - "license": "MIT", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, "dependencies": { "babel-runtime": "^6.26.0", "js-yaml": "3.7.0", @@ -23,5 +15,21 @@ "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-yaml#readme", + "keywords": [ + "gatsby", + "gatsby-plugin", + "yaml" + ], + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, + "scripts": { + "build": "babel src --out-dir . --ignore __tests__", + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir . --ignore __tests__" } } diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 4417c4a5d922d..af73b70f5670a 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -127,9 +127,6 @@ "engines": { "node": ">4.0.0" }, - "resolutions": { - "graphql": "^0.11.7" - }, "homepage": "https://github.com/gatsbyjs/gatsby#readme", "keywords": [ "blog", @@ -146,6 +143,9 @@ "type": "git", "url": "git+https://github.com/gatsbyjs/gatsby.git" }, + "resolutions": { + "graphql": "^0.11.7" + }, "scripts": { "build": "rimraf dist && npm run build:src && npm run build:internal-plugins && npm run build:rawfiles", "build:internal-plugins": "copyfiles -u 1 src/internal-plugins/**/package.json dist", diff --git a/packages/graphql-skip-limit/package.json b/packages/graphql-skip-limit/package.json index 1294aad812502..420e1ecbc2892 100644 --- a/packages/graphql-skip-limit/package.json +++ b/packages/graphql-skip-limit/package.json @@ -3,24 +3,32 @@ "description": "A library to help construct a graphql-js server supporting skip/relay style pagination. Built for Gatsby but perhaps useful elsewhere.", "version": "1.0.9", "author": "Kyle Mathews ", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "dependencies": { + "babel-runtime": "^6.26.0", + "graphql": "^0.11.7" + }, "devDependencies": { "babel-cli": "^6.26.0", "cross-env": "^5.0.5", "graphql": "^0.10.3" }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/graphql-skip-limit#readme", "keywords": [ "gatsby", "graphql" ], "license": "MIT", "main": "dist/index.js", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "scripts": { "build": "babel src --out-dir dist", - "watch": "babel -w src --out-dir dist", - "prepublish": "cross-env NODE_ENV=production npm run build" - }, - "dependencies": { - "babel-runtime": "^6.26.0", - "graphql": "^0.11.7" + "prepublish": "cross-env NODE_ENV=production npm run build", + "watch": "babel -w src --out-dir dist" } } diff --git a/plop-templates/package/package.json.hbs b/plop-templates/package/package.json.hbs index 3fc24231c51c1..8b87adc603348 100644 --- a/plop-templates/package/package.json.hbs +++ b/plop-templates/package/package.json.hbs @@ -12,6 +12,14 @@ "gatsby" ], "author": "{{{author}}}", + "bugs": { + "url": "https://github.com/gatsbyjs/gatsby/issues" + }, + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/{{name}}#readme", + "repository": { + "type": "git", + "url": "https://github.com/gatsbyjs/gatsby.git" + }, "license": "MIT", "dependencies": { "babel-runtime": "^6.26.0"