2018-05-07 18:29:27 +02:00
|
|
|
{
|
|
|
|
"name": "gatsby-plugin-matomo",
|
|
|
|
"description": "Gatsby plugin to add Matomo (formerly Piwik) onto a site.",
|
2019-06-10 02:38:29 +02:00
|
|
|
"version": "0.7.1",
|
2018-05-07 18:29:27 +02:00
|
|
|
"author": "Matthias Kretschmann <m@kretschmann.io>",
|
2018-11-21 20:01:02 +01:00
|
|
|
"scripts": {
|
|
|
|
"build": "babel src --out-dir . --ignore __tests__",
|
2018-12-05 20:19:10 +01:00
|
|
|
"start": "babel -w src --out-dir . --ignore __tests__",
|
2018-11-21 20:01:02 +01:00
|
|
|
"test": "eslint ./src/**/*.js",
|
2019-06-10 02:04:28 +02:00
|
|
|
"format": "prettier --write 'src/**/*.{js,jsx}'",
|
|
|
|
"release": "release-it --non-interactive",
|
2018-11-21 20:01:02 +01:00
|
|
|
"prepublishOnly": "cross-env NODE_ENV=production npm run build",
|
2019-06-10 02:04:28 +02:00
|
|
|
"changelog": "./node_modules/.bin/conventional-changelog -i CHANGELOG.md -s -r 0"
|
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": {
|
2019-06-10 02:37:32 +02:00
|
|
|
"@babel/cli": "^7.4.4",
|
|
|
|
"@babel/core": "^7.4.5",
|
|
|
|
"@babel/preset-env": "^7.4.5",
|
2019-03-30 14:00:20 +01:00
|
|
|
"@babel/preset-react": "^7.0.0",
|
2019-06-10 02:37:32 +02:00
|
|
|
"conventional-changelog-cli": "^2.0.21",
|
2018-06-19 23:39:12 +02:00
|
|
|
"cross-env": "^5.2.0",
|
2019-03-30 14:00:20 +01:00
|
|
|
"eslint": "^5.16.0",
|
2019-06-10 02:04:28 +02:00
|
|
|
"eslint-config-prettier": "^4.3.0",
|
|
|
|
"eslint-plugin-prettier": "^3.1.0",
|
2019-06-10 02:37:32 +02:00
|
|
|
"eslint-plugin-react": "^7.13.0",
|
2019-06-10 02:04:28 +02:00
|
|
|
"prettier": "^1.18.2",
|
2019-03-30 14:00:20 +01:00
|
|
|
"react": "^16.8.6",
|
|
|
|
"react-dom": "^16.8.6",
|
2019-06-10 02:04:17 +02:00
|
|
|
"release-it": "^12.3.0"
|
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-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
|
|
|
}
|
|
|
|
}
|