2018-05-07 18:29:27 +02:00
|
|
|
{
|
|
|
|
"name": "gatsby-plugin-matomo",
|
|
|
|
"description": "Gatsby plugin to add Matomo (formerly Piwik) onto a site.",
|
2018-06-28 19:55:31 +02:00
|
|
|
"version": "0.4.1",
|
2018-05-07 18:29:27 +02:00
|
|
|
"author": "Matthias Kretschmann <m@kretschmann.io>",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/kremalicious/gatsby-plugin-matomo/issues"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-06-19 23:28:44 +02:00
|
|
|
"babel-runtime": "^6.26.0",
|
|
|
|
"react": "^16.4.1",
|
|
|
|
"react-hot-loader": "^4.3.3"
|
2018-05-07 18:29:27 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"babel-cli": "^6.26.0",
|
2018-05-14 22:05:32 +02:00
|
|
|
"babel-preset-env": "^1.7.0",
|
2018-05-07 18:29:27 +02:00
|
|
|
"babel-preset-react": "^6.24.1",
|
2018-06-19 23:39:12 +02:00
|
|
|
"cross-env": "^5.2.0",
|
2018-06-28 19:50:43 +02:00
|
|
|
"eslint": "^5.0.1",
|
|
|
|
"eslint-plugin-react": "^7.10.0",
|
2018-06-19 23:39:12 +02:00
|
|
|
"release-it": "^7.4.7"
|
2018-05-07 18:29:27 +02:00
|
|
|
},
|
|
|
|
"homepage": "https://github.com/kremalicious/gatsby-plugin-matomo",
|
|
|
|
"keywords": [
|
|
|
|
"gatsby",
|
|
|
|
"gatsby-plugin",
|
|
|
|
"matomo",
|
|
|
|
"piwik"
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"main": "index.js",
|
|
|
|
"peerDependencies": {
|
2018-06-19 23:28:44 +02:00
|
|
|
"gatsby": ">=1.9.0"
|
2018-05-07 18:29:27 +02:00
|
|
|
},
|
2018-05-23 22:23:26 +02:00
|
|
|
"repository": "github:kremalicious/gatsby-plugin-matomo",
|
2018-05-07 18:29:27 +02:00
|
|
|
"scripts": {
|
|
|
|
"build": "babel src --out-dir . --ignore __tests__",
|
|
|
|
"watch": "babel -w src --out-dir . --ignore __tests__",
|
2018-05-07 20:22:11 +02:00
|
|
|
"test": "eslint ./src/**/*.js",
|
|
|
|
"release": "./node_modules/release-it/bin/release-it.js --src.tagName='v%s' --github.release --npm.publish --non-interactive",
|
|
|
|
"release-minor": "./node_modules/release-it/bin/release-it.js minor --src.tagName='v%s' --github.release --npm.publish --non-interactive",
|
|
|
|
"release-major": "./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"
|
2018-05-07 18:29:27 +02:00
|
|
|
}
|
|
|
|
}
|