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",
2024-04-08 13:12:00 +02:00
"version": "1.1.0",
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": {
2023-09-28 22:16:51 +02:00
"build": "cross-env NODE_ENV=production babel src --out-dir .",
"start": "babel -w src --out-dir .",
2023-09-28 22:27:26 +02:00
"test": "npm run lint && jest --coverage --config ./test/jest.config.json",
2023-09-28 22:16:51 +02:00
"lint": "eslint ./{src,test}/**/*.js",
"format": "prettier --write '{src,test}/**/*.{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": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
2022-03-11 21:03:07 +01:00
"auto-changelog": "^2.4.0",
2021-01-31 23:37:28 +01:00
"cross-env": "^7.0.3",
2023-09-28 12:06:28 +02:00
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.1.0",
2023-09-28 22:16:51 +02:00
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"release-it": "^17.1.1"
2018-08-30 01:11:52 +02:00
},
"peerDependencies": {
2022-11-08 20:12:41 +01:00
"gatsby": "^4.0.0 || ^5.0.0",
"gatsby-plugin-meta-redirect": ">=1.1.0"
2018-08-30 01:11:52 +02:00
},
"engines": {
2023-09-28 12:14:44 +02:00
"node": ">=18"
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
}