UNPKG

gatsby-plugin-fathom

Version:

Gatsby plugin to add Fathom tracking to your site.

88 lines (87 loc) 2.15 kB
{ "name": "gatsby-plugin-fathom", "version": "2.1.1", "description": "Gatsby plugin to add Fathom tracking to your site.", "author": "Lars Graubner <mail@larsgraubner.de> (https://larsgraubner.com)", "license": "MIT", "repository": "lgraubner/gatsby-plugin-fathom", "bugs": { "url": "https://github.com/lgraubner/gatsby-plugin-fathom/issues" }, "homepage": "https://github.com/lgraubner/gatsby-plugin-fathom", "keywords": [ "gatsby", "gatsby-plugin", "fathom", "analytics" ], "main": "index.js", "dependencies": { "@babel/runtime": "7.14.5" }, "devDependencies": { "@babel/cli": "7.14.5", "@babel/core": "7.14.5", "@babel/preset-env": "7.14.5", "@babel/preset-react": "7.14.5", "@typescript-eslint/eslint-plugin": "4.26.1", "@typescript-eslint/parser": "4.26.1", "babel-eslint": "10.1.0", "cross-env": "7.0.3", "eslint": "7.28.0", "eslint-config-react-app": "6.0.0", "eslint-plugin-flowtype": "5.7.2", "eslint-plugin-import": "2.23.4", "eslint-plugin-jsx-a11y": "6.4.1", "eslint-plugin-react": "7.24.0", "eslint-plugin-react-hooks": "4.2.0", "husky": "6.0.0", "jest": "27.0.4", "lint-staged": "11.0.0", "prettier": "2.3.1", "react": "^16.13.1" }, "peerDependencies": { "gatsby": ">=2.0.0", "react": ">=16.0.0" }, "scripts": { "build": "babel src --out-dir . --ignore src/__tests__", "prepublishOnly": "cross-env NODE_ENV=production npm run build", "lint": "eslint ./src/**/*.js", "format": "prettier --write 'src/**/*.js'", "precommit": "lint-staged", "test": "jest" }, "babel": { "presets": [ [ "@babel/env", { "targets": "last 4 versions, safari >= 7, ie >= 9" } ], "@babel/react" ] }, "eslintConfig": { "extends": "react-app", "globals": { "fathom": false } }, "prettier": { "singleQuote": true, "semi": false }, "lint-staged": { "*.js": [ "eslint --fix", "prettier --write", "git add" ] }, "release": { "tagFormat": "${version}" } }