gatsby-plugin-matomo/package.json

44 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.",
2018-05-14 22:16:36 +02:00
"version": "0.3.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": {
"babel-runtime": "^6.26.0"
},
"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-05-14 22:05:32 +02:00
"cross-env": "^5.1.5",
2018-05-07 18:29:27 +02:00
"eslint": "^4.19.1",
2018-05-14 22:05:32 +02:00
"eslint-plugin-react": "^7.8.2",
"release-it": "^7.4.3"
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": {
"gatsby": "^1.9.0"
},
"repository": "https://github.com/kremalicious/gatsby-plugin-matomo.git",
"scripts": {
"build": "babel src --out-dir . --ignore __tests__",
"watch": "babel -w src --out-dir . --ignore __tests__",
"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
}
}