diff --git a/gatsby-remark-oembed-md-site/package.json b/gatsby-remark-oembed-md-site/package.json index 23567db..329e317 100644 --- a/gatsby-remark-oembed-md-site/package.json +++ b/gatsby-remark-oembed-md-site/package.json @@ -1,8 +1,16 @@ { "name": "gatsby-remark-oembed-md-site", "description": "Gatsby Remark Oembed Example (Markdown)", + "author": "@raae (queen.raae.codes)", "version": "1.0.0", - "author": "Benedicte Raae (raae.codes)", + "license": "MIT", + "homepage": "https://github.com/raae/gatsby-remark-oembed-example-site#readme", + "scripts": { + "develop": "gatsby develop -p 8000", + "build": "gatsby build", + "serve": "gatsby serve", + "test": "echo \"Error: no test specified\" && exit 1" + }, "dependencies": { "@mdx-js/mdx": "^1.5.3", "@mdx-js/react": "^1.5.3", @@ -26,23 +34,9 @@ "typography": "^0.16.17", "typography-theme-wordpress-2016": "^0.15.10" }, - "homepage": "https://github.com/raae/gatsby-remark-oembed-example-site#readme", - "keywords": [ - "gatsby" - ], - "license": "MIT", "main": "n/a", "repository": { "type": "git", "url": "https://github.com/raae/gatsby-remark-oembed-example-site" - }, - "scripts": { - "dev": "rm -r -f .cache && gatsby develop", - "lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .", - "test": "echo \"Error: no test specified\" && exit 1", - "develop": "gatsby develop", - "build": "rm -r -f .cache && gatsby build", - "deploy": "gatsby build --prefix-paths && gh-pages -d public", - "fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js" } } diff --git a/gatsby-remark-oembed-mdx-site/package.json b/gatsby-remark-oembed-mdx-site/package.json index fb90759..cb34bc7 100644 --- a/gatsby-remark-oembed-mdx-site/package.json +++ b/gatsby-remark-oembed-mdx-site/package.json @@ -1,8 +1,16 @@ { "name": "gatsby-remark-oembed-mdx-site", "description": "Gatsby Remark Oembed Example (MDX)", + "author": "@raae (queen.raae.codes)", "version": "1.0.0", - "author": "Benedicte Raae (raae.codes)", + "license": "MIT", + "homepage": "https://github.com/raae/gatsby-remark-oembed-example-site#readme", + "script": { + "develop": "gatsby develop -p 8080", + "build": "gatsby build", + "serve": "gatsby serve", + "test": "echo \"Error: no test specified\" && exit 1" + }, "dependencies": { "@mdx-js/mdx": "^1.5.3", "@mdx-js/react": "^1.5.3", @@ -30,24 +38,9 @@ "eslint": "^4.19.1", "eslint-plugin-react": "^7.11.1" }, - "homepage": "https://github.com/raae/gatsby-remark-oembed-example-site#readme", - "keywords": [ - "gatsby" - ], - "license": "MIT", "main": "n/a", "repository": { "type": "git", "url": "https://github.com/raae/gatsby-remark-oembed-example-site" - }, - "scripts": { - "dev": "rm -r -f .cache && gatsby develop -p 8080", - "lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .", - "test": "echo \"Error: no test specified\" && exit 1", - "format": "prettier --write 'src/**/*.js' 'src/**/*.md'", - "develop": "gatsby develop", - "build": "rm -r -f .cache && gatsby build", - "deploy": "gatsby build --prefix-paths && gh-pages -d public", - "fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js" } } diff --git a/gatsby-remark-oembed/package.json b/gatsby-remark-oembed/package.json index c6524fe..4243757 100644 --- a/gatsby-remark-oembed/package.json +++ b/gatsby-remark-oembed/package.json @@ -1,7 +1,28 @@ { "name": "@raae/gatsby-remark-oembed", - "version": "0.1.1", "description": "> A GatsbyJS Plugin that transforms oembed links into its corresponding embed code.", + "author": "@raae (queen.raae.codes)", + "version": "0.1.1", + "license": "MIT", + "homepage": "https://github.com/lillylabs/gatsby-remark-oembed#readme", + "scripts": { + "lint": "eslint --fix", + "test:watch": "jest --watch", + "test:coverage": "jest --coverage", + "prepublish": "./prepublish.js" + }, + "dependencies": { + "axios": "^0.19.0", + "lodash": "^4.17.14", + "unist-util-select": "^1.5.0" + }, + "devDependencies": { + "axios-mock-adapter": "^1.16.0", + "eslint": "7.19.0", + "eslint-config-prettier": "7.2.0", + "eslint-plugin-jest": "24.1.3", + "jest": "^23.6.0" + }, "keywords": [ "gatsby", "gatsby-plugin", @@ -14,9 +35,6 @@ "soundcloud", "instagram" ], - "author": "Benedicte Raae (raae.codes)", - "license": "MIT", - "homepage": "https://github.com/lillylabs/gatsby-remark-oembed#readme", "repository": { "type": "git", "url": "git+https://github.com/lillylabs/gatsby-remark-oembed.git" @@ -28,23 +46,5 @@ "jest": { "verbose": true, "testEnvironment": "node" - }, - "scripts": { - "lint": "eslint --fix", - "test:watch": "jest --watch", - "test:coverage": "jest --coverage", - "prepublish": "./prepublish.js" - }, - "dependencies": { - "axios": "^0.19.0", - "lodash": "^4.17.14", - "unist-util-select": "^1.5.0" - }, - "devDependencies": { - "axios-mock-adapter": "^1.16.0", - "eslint": "7.19.0", - "eslint-config-prettier": "7.2.0", - "eslint-plugin-jest": "24.1.3", - "jest": "^23.6.0" } } diff --git a/package.json b/package.json index a6febbc..075f84b 100644 --- a/package.json +++ b/package.json @@ -6,9 +6,9 @@ ], "scripts": { "plugin:test": "yarn workspace @raae/gatsby-remark-oembed test:coverage", - "md-site:develop": "yarn workspace gatsby-remark-oembed-md-site dev", + "md-site:develop": "yarn workspace gatsby-remark-oembed-md-site develop", "md-site:build": "yarn workspace gatsby-remark-oembed-md-site build", - "mdx-site:develop": "yarn workspace gatsby-remark-oembed-mdx-site dev", + "mdx-site:develop": "yarn workspace gatsby-remark-oembed-mdx-site develop", "mdx-site:build": "yarn workspace gatsby-remark-oembed-mdx-site build", "lint": "yarn workspace @raae/gatsby-remark-oembed lint", "test": "yarn workspace @raae/gatsby-remark-oembed test:coverage",