mirror of
https://github.com/kremalicious/gatsby-plugin-matomo.git
synced 2024-12-22 17:23:23 +01:00
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "gatsby-plugin-matomo",
|
|
"description": "Gatsby plugin to add Matomo (formerly Piwik) onto a site.",
|
|
"version": "0.8.0",
|
|
"author": "Matthias Kretschmann <m@kretschmann.io>",
|
|
"scripts": {
|
|
"build": "babel src --out-dir . --ignore **/__tests__",
|
|
"start": "babel -w src --out-dir . --ignore **/__tests__",
|
|
"test": "npm run lint && jest --coverage",
|
|
"lint": "eslint ./src/**/*.js",
|
|
"format": "prettier --write 'src/**/*.js'",
|
|
"release": "release-it --non-interactive",
|
|
"changelog": "auto-changelog -p",
|
|
"prepublishOnly": "cross-env NODE_ENV=production npm run build"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.8.4",
|
|
"@babel/core": "^7.8.4",
|
|
"@babel/runtime": "^7.8.4",
|
|
"auto-changelog": "^1.16.2",
|
|
"babel-preset-gatsby-package": "^0.2.16",
|
|
"cross-env": "^7.0.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-prettier": "^6.10.0",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"jest": "^25.1.0",
|
|
"prettier": "^1.19.1",
|
|
"react": "^16.12.0",
|
|
"release-it": "^12.4.3"
|
|
},
|
|
"homepage": "https://kremalicious.com/gatsby-plugin-matomo",
|
|
"keywords": [
|
|
"gatsby",
|
|
"gatsby-plugin",
|
|
"analytics",
|
|
"tracking",
|
|
"matomo",
|
|
"piwik"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"peerDependencies": {
|
|
"gatsby": ">=2.0.0",
|
|
"react": ">=16.4.2",
|
|
"react-dom": ">=16.4.2"
|
|
},
|
|
"repository": "github:kremalicious/gatsby-plugin-matomo",
|
|
"bugs": {
|
|
"url": "https://github.com/kremalicious/gatsby-plugin-matomo/issues"
|
|
}
|
|
}
|