gatsby-redirect-from/package.json

67 lines
1.8 KiB
JSON
Raw Normal View History

2018-08-30 01:11:52 +02:00
{
"name": "gatsby-redirect-from",
2022-03-11 21:03:31 +01:00
"version": "0.4.4",
2018-08-30 01:11:52 +02:00
"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.",
2020-05-22 17:05:21 +02:00
"homepage": "https://kremalicious.com/gatsby-redirect-from/",
2018-08-30 01:11:52 +02:00
"license": "MIT",
"main": "index.js",
"scripts": {
2021-02-01 00:06:30 +01:00
"build": "cross-env NODE_ENV=production babel src --out-dir . --ignore __tests__",
2018-08-30 13:12:47 +02:00
"start": "babel -w src --out-dir . --ignore __tests__",
2021-01-31 23:40:25 +01:00
"test": "eslint src/**/*.js",
2019-06-11 00:27:06 +02:00
"format": "prettier --write 'src/**/*.{js,jsx}'",
"release": "release-it --non-interactive",
"changelog": "auto-changelog -p",
2021-02-01 00:06:30 +01:00
"prepublishOnly": "npm run build"
2018-08-30 01:11:52 +02:00
},
"browserslist": [
"maintained node versions"
2018-08-30 01:11:52 +02:00
],
"devDependencies": {
2022-03-11 21:03:07 +01:00
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/helper-define-map": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"auto-changelog": "^2.4.0",
"chalk": "^5.0.1",
2021-01-31 23:37:28 +01:00
"cross-env": "^7.0.3",
2022-03-11 21:03:07 +01:00
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
2022-03-11 21:03:07 +01:00
"prettier": "^2.5.1",
"release-it": "^14.12.5"
2018-08-30 01:11:52 +02:00
},
"peerDependencies": {
2021-09-20 11:43:39 +02:00
"gatsby": "^2.0.0 || ^3.0.0 || ^4.0.0",
"gatsby-plugin-meta-redirect": ">=1.1.0"
2018-08-30 01:11:52 +02:00
},
"engines": {
2021-01-31 23:37:28 +01:00
"node": ">=12"
2018-08-30 01:11:52 +02:00
},
"repository": "github:kremalicious/gatsby-redirect-from",
"bugs": {
"url": "https://github.com/kremalicious/gatsby-redirect-from/issues"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"redirect"
],
"release-it": {
2019-06-11 00:46:23 +02:00
"hooks": {
"before:init": "npm test",
"after:bump": "npm run changelog"
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
2021-02-01 00:18:54 +01:00
"publish": false
}
}
2018-08-30 01:11:52 +02:00
}