gatsby-plugin-matomo/package.json

53 lines
1.5 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.",
2020-04-06 11:36:00 +02:00
"version": "0.8.3",
2018-05-07 18:29:27 +02:00
"author": "Matthias Kretschmann <m@kretschmann.io>",
2018-11-21 20:01:02 +01:00
"scripts": {
2020-02-15 15:21:24 +01:00
"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",
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",
"prepublishOnly": "cross-env NODE_ENV=production 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": {
2020-07-02 19:53:36 +02:00
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/runtime": "^7.10.4",
"auto-changelog": "^2.1.0",
"babel-preset-gatsby-package": "^0.5.1",
2020-03-22 16:06:09 +01:00
"cross-env": "^7.0.2",
2020-07-02 19:53:36 +02:00
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"prettier": "^2.0.5",
2020-03-22 16:06:09 +01:00
"react": "^16.13.1",
"release-it": "^14.2.0"
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": {
2020-02-15 14:07:20 +01:00
"gatsby": ">=2.0.0",
"react": ">=16.4.2",
"react-dom": ">=16.4.2"
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
}
}