mirror of
https://github.com/kremalicious/gatsby-redirect-from.git
synced 2024-12-22 17:23:24 +01:00
0eb119cc70
Bumps [release-it](https://github.com/release-it/release-it) from 13.7.0 to 14.0.1. - [Release notes](https://github.com/release-it/release-it/releases) - [Changelog](https://github.com/release-it/release-it/blob/master/CHANGELOG.md) - [Commits](https://github.com/release-it/release-it/compare/13.7.0...14.0.1) Signed-off-by: dependabot[bot] <support@github.com>
67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"name": "gatsby-redirect-from",
|
|
"version": "0.2.4",
|
|
"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": "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": "cross-env NODE_ENV=production npm run build"
|
|
},
|
|
"browserslist": [
|
|
"maintained node versions"
|
|
],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.10.4",
|
|
"@babel/core": "^7.10.4",
|
|
"@babel/preset-env": "^7.10.4",
|
|
"auto-changelog": "^2.1.0",
|
|
"chalk": "^4.1.0",
|
|
"cross-env": "^7.0.2",
|
|
"eslint": "^7.3.1",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"prettier": "^2.0.5",
|
|
"release-it": "^14.0.1"
|
|
},
|
|
"peerDependencies": {
|
|
"gatsby": ">=2",
|
|
"gatsby-plugin-meta-redirect": ">=1.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"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": true
|
|
}
|
|
}
|
|
}
|