gatsby-redirect-from/package.json

68 lines
1.8 KiB
JSON
Raw Normal View History

2018-08-30 01:11:52 +02:00
{
"name": "gatsby-redirect-from",
2020-05-23 12:16:18 +02:00
"version": "0.2.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
],
2019-06-11 00:17:12 +02:00
"dependencies": {},
2018-08-30 01:11:52 +02:00
"devDependencies": {
2021-01-31 23:37:28 +01:00
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
2021-01-31 23:52:30 +01:00
"@babel/eslint-parser": "^7.12.1",
2021-01-31 23:37:28 +01:00
"@babel/preset-env": "^7.12.11",
"auto-changelog": "^2.2.1",
2020-07-02 19:56:59 +02:00
"chalk": "^4.1.0",
2021-01-31 23:37:28 +01:00
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"release-it": "^14.2.2"
2018-08-30 01:11:52 +02:00
},
"peerDependencies": {
"gatsby": ">=2",
"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": {
"publish": true
}
}
2018-08-30 01:11:52 +02:00
}