Skip to content

Commit

Permalink
add package json metadata for better display on npmjs.org (gatsbyjs#3981
Browse files Browse the repository at this point in the history
)

* chore: add package json metadata (git url, issues, etc.)

* chore: update plop template

* chore: move bin/files up in package.json

* chore: fix unescaped email(s)

* Run 'fixpack' on all package.jsons
  • Loading branch information
DSchau authored and KyleAMathews committed Feb 13, 2018
1 parent 82be6f7 commit ad9a973
Showing 1 changed file with 19 additions and 11 deletions.
30 changes: 19 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -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 <mathews.kyle@gmail.com>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-runtime": "^6.26.0",
Expand All @@ -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__"
}
}

0 comments on commit ad9a973

Please sign in to comment.