gatsby-plugin-matomo/package.json

51 lines
1.5 KiB
JSON
Raw Normal View History

2018-05-07 18:29:27 +02:00
{
"name": "gatsby-plugin-matomo",
"description": "Gatsby plugin to add Matomo (formerly Piwik) onto a site.",
2023-03-23 10:43:09 +01:00
"version": "0.15.0",
2018-05-07 18:29:27 +02:00
"author": "Matthias Kretschmann <m@kretschmann.io>",
2018-11-21 20:01:02 +01:00
"scripts": {
2021-02-01 00:08:48 +01:00
"build": "cross-env NODE_ENV=production babel src --out-dir . --ignore **/__tests__",
2020-02-15 15:21:24 +01:00
"start": "babel -w src --out-dir . --ignore **/__tests__",
"test": "npm run lint && jest --coverage",
"lint": "eslint ./src/**/*.js",
2020-02-15 14:07:20 +01:00
"format": "prettier --write 'src/**/*.js'",
2019-06-10 02:04:28 +02:00
"release": "release-it --non-interactive",
2019-06-13 21:13:56 +02:00
"changelog": "auto-changelog -p",
2021-02-01 00:08:48 +01:00
"prepublishOnly": "npm run build"
2018-05-07 18:29:27 +02:00
},
"devDependencies": {
2022-11-08 20:04:55 +01:00
"@babel/cli": "^7.19.3",
2022-03-11 20:53:09 +01:00
"auto-changelog": "^2.4.0",
2022-11-08 20:04:55 +01:00
"babel-preset-gatsby-package": "^3.0.0",
2021-02-01 00:08:48 +01:00
"cross-env": "^7.0.3",
2022-11-08 20:04:55 +01:00
"eslint": "^8.27.0",
2022-03-11 20:53:09 +01:00
"eslint-config-prettier": "^8.5.0",
2022-11-08 20:04:55 +01:00
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.0",
"jest-environment-jsdom": "^29.3.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"release-it": "^15.5.0"
2018-05-07 18:29:27 +02:00
},
2020-02-15 14:07:20 +01:00
"homepage": "https://kremalicious.com/gatsby-plugin-matomo",
2018-05-07 18:29:27 +02:00
"keywords": [
"gatsby",
"gatsby-plugin",
2020-02-15 14:07:20 +01:00
"analytics",
2020-02-15 15:21:24 +01:00
"tracking",
2018-05-07 18:29:27 +02:00
"matomo",
"piwik"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
2022-11-08 20:04:55 +01:00
"gatsby": "^4.0.0 || ^5.0.0",
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
2018-05-07 18:29:27 +02:00
},
2018-05-23 22:23:26 +02:00
"repository": "github:kremalicious/gatsby-plugin-matomo",
2018-11-21 20:01:02 +01:00
"bugs": {
"url": "https://github.com/kremalicious/gatsby-plugin-matomo/issues"
2018-05-07 18:29:27 +02:00
}
}