gatsby-plugin-matomo/package.json

51 lines
1.4 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.",
2022-04-10 01:46:51 +02:00
"version": "0.13.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
},
2019-03-30 14:00:20 +01:00
"dependencies": {},
2018-05-07 18:29:27 +02:00
"devDependencies": {
2022-03-11 20:53:09 +01:00
"@babel/cli": "^7.17.6",
"auto-changelog": "^2.4.0",
2022-04-10 01:27:13 +02:00
"babel-preset-gatsby-package": "^2.11.0",
2021-02-01 00:08:48 +01:00
"cross-env": "^7.0.3",
2022-04-10 01:27:13 +02:00
"eslint": "^8.13.0",
2022-03-11 20:53:09 +01:00
"eslint-config-prettier": "^8.5.0",
2021-11-28 16:40:23 +01:00
"eslint-plugin-prettier": "^4.0.0",
2022-03-11 20:53:09 +01:00
"jest": "^27.5.1",
2022-04-10 01:27:13 +02:00
"prettier": "^2.6.2",
2021-05-23 11:17:34 +02:00
"react": ">=16.8",
"release-it": "^15.1.1"
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-04-10 01:40:51 +02:00
"gatsby": "^4.0.0",
2021-02-01 00:08:48 +01:00
"react": ">=16.8",
"react-dom": ">=16.8"
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
}
}