mirror of
https://github.com/kremalicious/gatsby-plugin-matomo.git
synced 2025-01-03 10:25:00 +01:00
48 lines
1.8 KiB
JSON
48 lines
1.8 KiB
JSON
{
|
|
"name": "gatsby-plugin-matomo",
|
|
"description": "Gatsby plugin to add Matomo (formerly Piwik) onto a site.",
|
|
"version": "0.5.1",
|
|
"author": "Matthias Kretschmann <m@kretschmann.io>",
|
|
"scripts": {
|
|
"build": "babel src --out-dir . --ignore __tests__",
|
|
"start": "babel -w src --out-dir . --ignore __tests__",
|
|
"test": "eslint ./src/**/*.js",
|
|
"release": "npm run changelog && ./node_modules/release-it/bin/release-it.js --src.tagName='v%s' --github.release --npm.publish --non-interactive",
|
|
"release-minor": "npm run changelog && ./node_modules/release-it/bin/release-it.js minor --src.tagName='v%s' --github.release --npm.publish --non-interactive",
|
|
"release-major": "npm run changelog && ./node_modules/release-it/bin/release-it.js major --src.tagName='v%s' --github.release --npm.publish --non-interactive",
|
|
"prepublishOnly": "cross-env NODE_ENV=production npm run build",
|
|
"changelog": "./node_modules/.bin/conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'update changelog'"
|
|
},
|
|
"dependencies": {
|
|
"babel-runtime": "^6.26.0",
|
|
"react": "^16.6.3",
|
|
"react-hot-loader": "^4.3.12"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.26.0",
|
|
"babel-preset-env": "^1.7.0",
|
|
"babel-preset-react": "^6.24.1",
|
|
"conventional-changelog-cli": "^2.0.11",
|
|
"cross-env": "^5.2.0",
|
|
"eslint": "^5.9.0",
|
|
"eslint-plugin-react": "^7.11.1",
|
|
"release-it": "^8.0.1"
|
|
},
|
|
"homepage": "https://github.com/kremalicious/gatsby-plugin-matomo",
|
|
"keywords": [
|
|
"gatsby",
|
|
"gatsby-plugin",
|
|
"matomo",
|
|
"piwik"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"peerDependencies": {
|
|
"gatsby": ">=1.9.0"
|
|
},
|
|
"repository": "github:kremalicious/gatsby-plugin-matomo",
|
|
"bugs": {
|
|
"url": "https://github.com/kremalicious/gatsby-plugin-matomo/issues"
|
|
}
|
|
}
|