mirror of
https://github.com/kremalicious/gatsby-redirect-from.git
synced 2024-12-22 09:13:20 +01:00
48 lines
1.6 KiB
JSON
48 lines
1.6 KiB
JSON
{
|
|
"name": "gatsby-redirect-from",
|
|
"version": "0.0.3",
|
|
"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://github.com/kremalicious/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",
|
|
"release": "./node_modules/release-it/bin/release-it.js --src.tagName='v%s' --github.release --npm.publish --non-interactive",
|
|
"release-minor": "./node_modules/release-it/bin/release-it.js minor --src.tagName='v%s' --github.release --npm.publish --non-interactive",
|
|
"release-major": "./node_modules/release-it/bin/release-it.js major --src.tagName='v%s' --github.release --npm.publish --non-interactive",
|
|
"prepublishOnly": "cross-env NODE_ENV=production npm run build"
|
|
},
|
|
"browserslist": [
|
|
"last 2 versions"
|
|
],
|
|
"dependencies": {
|
|
"chalk": "^2.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.0.0",
|
|
"@babel/core": "^7.0.0",
|
|
"@babel/preset-env": "^7.0.0",
|
|
"cross-env": "^5.2.0",
|
|
"eslint": "^5.4.0",
|
|
"release-it": "^7.6.0"
|
|
},
|
|
"peerDependencies": {
|
|
"gatsby": ">=2"
|
|
},
|
|
"engines": {
|
|
"node": "^10.0.0"
|
|
},
|
|
"repository": "github:kremalicious/gatsby-redirect-from",
|
|
"bugs": {
|
|
"url": "https://github.com/kremalicious/gatsby-redirect-from/issues"
|
|
},
|
|
"keywords": [
|
|
"gatsby",
|
|
"gatsby-plugin",
|
|
"redirect"
|
|
]
|
|
}
|