mirror of
https://github.com/kremalicious/gatsby-redirect-from.git
synced 2024-12-22 09:13:20 +01:00
67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"name": "gatsby-redirect-from",
|
|
"version": "1.0.1",
|
|
"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"
|
|
],
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.21.0",
|
|
"@babel/core": "^7.21.3",
|
|
"@babel/helper-define-map": "^7.18.6",
|
|
"@babel/preset-env": "^7.20.2",
|
|
"auto-changelog": "^2.4.0",
|
|
"chalk": "^5.2.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.36.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"prettier": "^2.8.6",
|
|
"release-it": "^15.9.1"
|
|
},
|
|
"peerDependencies": {
|
|
"gatsby": "^4.0.0 || ^5.0.0",
|
|
"gatsby-plugin-meta-redirect": ">=1.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"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
|
|
}
|
|
}
|
|
}
|