{
    "name": "gatsby-plugin-mailchimp",
    "author": "Benjamin Hoffman <6520022+benjaminhoffman@users.noreply.github.com>",
    "version": "5.2.2",
    "description": "A simple, lightweight Gatsby plugin to subscribe email addresses to your Mailchimp list",
    "main": "index.js",
    "license": "MIT",
    "homepage": "https://github.com/benjaminhoffman/gatsby-plugin-mailchimp#readme",
    "bugs": {
        "url": "https://github.com/benjaminhoffman/gatsby-plugin-mailchimp/issues"
    },
    "scripts": {
        "test": "jest",
        "build": "babel src -d .",
        "watch": "babel src -d . -w",
        "publish": "yarn build && npm publish",
        "precommit": "lint-staged"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/benjaminhoffman/gatsby-plugin-mailchimp.git"
    },
    "keywords": [
        "gatsby",
        "gatsby-plugin",
        "gatsbyjs",
        "mailchimp",
        "mailchimp api"
    ],
    "dependencies": {
        "email-validator": "^2.0.4",
        "jsonp": "^0.2.1"
    },
    "devDependencies": {
        "@babel/cli": "^7.8.4",
        "@babel/preset-env": "^7.9.6",
        "babel-eslint": "^10.0.1",
        "eslint": "^5.16.0",
        "eslint-config-airbnb-base": "^13.1.0",
        "eslint-config-prettier": "^4.2.0",
        "eslint-plugin-import": "^2.17.2",
        "eslint-plugin-prettier": "^3.0.1",
        "eslint-plugin-react": "^7.12.4",
        "husky": "^2.1.0",
        "jest": "^26.0.1",
        "lint-staged": "^8.1.5",
        "prettier": "^1.17.0",
        "webpack": "^4.29.6"
    },
    "husky": {
        "hooks": {
            "pre-commit": "yarn precommit"
        }
    },
    "lint-staged": {
        "*.js": [
            "eslint --fix",
            "prettier --write",
            "git add"
        ]
    }
}
