mirror of
https://github.com/kremalicious/gatsby-redirect-from.git
synced 2024-10-31 23:35:30 +01:00
d1d0dd3a5c
Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 7.2.0 to 8.1.0. - [Release notes](https://github.com/prettier/eslint-config-prettier/releases) - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v7.2.0...v8.1.0) Signed-off-by: dependabot[bot] <support@github.com>
68 lines
1.8 KiB
JSON
68 lines
1.8 KiB
JSON
{
|
|
"name": "gatsby-redirect-from",
|
|
"version": "0.3.0",
|
|
"author": "Matthias Kretschmann <m@kretschmann.io>",
|
|
"description": "Set redirect urls in your YAML frontmatter within your Gatsby site's Markdown files. Mimics the behavior of jekyll-redirect-from.",
|
|
"homepage": "https://kremalicious.com/gatsby-redirect-from/",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "cross-env NODE_ENV=production babel src --out-dir . --ignore __tests__",
|
|
"start": "babel -w src --out-dir . --ignore __tests__",
|
|
"test": "eslint src/**/*.js",
|
|
"format": "prettier --write 'src/**/*.{js,jsx}'",
|
|
"release": "release-it --non-interactive",
|
|
"changelog": "auto-changelog -p",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"browserslist": [
|
|
"maintained node versions"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.12.10",
|
|
"@babel/core": "^7.12.10",
|
|
"@babel/eslint-parser": "^7.12.1",
|
|
"@babel/preset-env": "^7.12.11",
|
|
"auto-changelog": "^2.2.1",
|
|
"chalk": "^4.1.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^7.19.0",
|
|
"eslint-config-prettier": "^8.1.0",
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
"prettier": "^2.2.1",
|
|
"release-it": "^14.2.2"
|
|
},
|
|
"peerDependencies": {
|
|
"gatsby": ">=2",
|
|
"gatsby-plugin-meta-redirect": ">=1.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"repository": "github:kremalicious/gatsby-redirect-from",
|
|
"bugs": {
|
|
"url": "https://github.com/kremalicious/gatsby-redirect-from/issues"
|
|
},
|
|
"keywords": [
|
|
"gatsby",
|
|
"gatsby-plugin",
|
|
"redirect"
|
|
],
|
|
"release-it": {
|
|
"hooks": {
|
|
"before:init": "npm test",
|
|
"after:bump": "npm run changelog"
|
|
},
|
|
"git": {
|
|
"tagName": "v${version}"
|
|
},
|
|
"github": {
|
|
"release": true
|
|
},
|
|
"npm": {
|
|
"publish": false
|
|
}
|
|
}
|
|
}
|