{
    "name": "eventbrite",
    "version": "1.3.0",
    "description": "The official JavaScript SDK for the Eventbrite v3 API",
    "author": "Eventbrite <npmjs@eventbrite.com>",
    "main": "lib/cjs/index.js",
    "module": "lib/esm/index.js",
    "jsnext:main": "lib/esm/index.js",
    "browser": "dist/eventbrite.js",
    "types": "lib/index.d.ts",
    "files": [
        "lib",
        "dist"
    ],
    "keywords": [
        "rest",
        "api",
        "sdk",
        "events",
        "tickets",
        "eventbrite"
    ],
    "repository": {
        "type": "git",
        "url": "https://github.com/eventbrite/eventbrite-sdk-javascript.git"
    },
    "bugs": {
        "url": "https://github.com/eventbrite/eventbrite-sdk-javascript/issues"
    },
    "homepage": "https://github.com/eventbrite/eventbrite-sdk-javascript#readme",
    "license": "MIT",
    "scripts": {
        "format": "prettier-eslint --write",
        "lint": "jest --config=jest-lint.config.js",
        "precommit": "lint-staged",
        "gen:declarations": "tsc --p ./tsconfig.build.json",
        "build": "npm-run-all build:targets gen:declarations",
        "build:targets": "gulp build",
        "prebuild:targets": "rm -rf dist && rm -rf lib",
        "postbuild": "bundlesize",
        "start": "jest --watch",
        "test": "jest --config=jest-test.config.js",
        "type-check": "jest --config=jest-tsc.config.js",
        "validate": "jest"
    },
    "lint-staged": {
        "*.{ts,js}": [
            "yarn format",
            "git add"
        ]
    },
    "dependencies": {
        "isomorphic-fetch": "^3.0.0"
    },
    "resolutions": {
        "babel-core": "^7.0.0-bridge.0"
    },
    "devDependencies": {
        "@babel/cli": "^7.12.10",
        "@babel/core": "^7.12.10",
        "@babel/plugin-external-helpers": "^7.12.1",
        "@babel/plugin-proposal-class-properties": "^7.12.1",
        "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
        "@babel/plugin-transform-modules-umd": "^7.12.1",
        "@babel/preset-env": "^7.12.11",
        "@babel/preset-typescript": "^7.12.7",
        "@types/isomorphic-fetch": "^0.0.35",
        "@types/jest": "^26.0.19",
        "@types/node": "^14.14.20",
        "@typescript-eslint/eslint-plugin": "^4.12.0",
        "@typescript-eslint/parser": "^4.12.0",
        "babel-eslint": "^10.1.0",
        "bundlesize": "^0.18.0",
        "eslint": "^7.17.0",
        "eslint-config-eventbrite": "^5.0.0",
        "eslint-plugin-babel": "^5.3.1",
        "eslint-plugin-import": "^2.22.1",
        "eslint-plugin-jest": "^24.1.3",
        "eslint-plugin-typescript": "^0.14.0",
        "gulp": "^4.0.2",
        "gulp-babel": "^8.0.0",
        "gulp-debug": "^4.0.0",
        "gulp-rename": "^2.0.0",
        "gulp-replace": "^1.0.0",
        "gulp-sourcemaps": "^3.0.0",
        "gulp-uglify": "^3.0.2",
        "gulp-util": "^3.0.8",
        "husky": "^4.3.6",
        "jest": "^26.6.3",
        "jest-runner-eslint": "^0.10.0",
        "jest-runner-tsc": "^1.6.0",
        "lint-staged": "^10.5.3",
        "npm-run-all": "^4.1.2",
        "prettier-eslint-cli": "^5.0.0",
        "rollup": "^2.36.1",
        "rollup-plugin-babel": "^4.4.0",
        "rollup-plugin-commonjs": "^10.1.0",
        "rollup-plugin-json": "^4.0.0",
        "rollup-plugin-node-resolve": "^5.2.0",
        "rollup-plugin-replace": "^2.2.0",
        "rollup-plugin-typescript": "^1.0.1",
        "rollup-plugin-uglify": "^6.0.4",
        "tslib": "^2.1.0",
        "typescript": "~4.1.3",
        "typescript-babel-jest": "^1.0.6"
    },
    "bundlesize": [
        {
            "path": "./dist/eventbrite.min.js",
            "threshold": "4Kb"
        }
    ],
    "jest": {
        "projects": [
            "jest-test.config.js",
            "jest-lint.config.js",
            "jest-tsc.config.js"
        ]
    },
    "prettier": {
        "tabWidth": 4,
        "semi": true,
        "singleQuote": true
    }
}
