{
    "name": "instagram-graph-api",
    "version": "0.7.0",
    "main": "lib/index.js",
    "types": "lib/index.d.ts",
    "scripts": {
        "build": "tsc",
        "cti": "cti entrypoint src/ -o Index.ts -e test",
        "test": "jest --coverage",
        "docs": "typedoc --out docs src/main README.md",
        "format": "prettier --write src",
        "check-format": "prettier --check src",
        "lint": "eslint src"
    },
    "keywords": [
        "lib",
        "instagram",
        "rest",
        "request"
    ],
    "author": "Tiago Grosso <tiagogrosso99@gmail.com>",
    "license": "MIT",
    "description": "A library to help perform requests to the Instagram Graph API.",
    "dependencies": {
        "axios": "^0.21.1"
    },
    "devDependencies": {
        "@types/jest": "^26.0.20",
        "@typescript-eslint/eslint-plugin": "^4.15.0",
        "@typescript-eslint/parser": "^4.15.0",
        "axios-mock-adapter": "^1.19.0",
        "create-ts-index": "^1.13.6",
        "eslint": "^7.19.0",
        "eslint-config-google": "^0.14.0",
        "husky": "^4.3.8",
        "jest": "^26.6.3",
        "prettier": "2.2.1",
        "ts-jest": "^26.5.1",
        "ts-node": "^9.1.1",
        "typedoc": "^0.20.23",
        "typescript": "^4.1.4"
    },
    "husky": {
        "hooks": {
            "pre-commit": "npm run build && npm test && npm run check-format && npm run lint"
        }
    },
    "directories": {
        "test": "test"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/TiagoGrosso/instagram-graph-api-lib.git"
    },
    "bugs": {
        "url": "https://github.com/TiagoGrosso/instagram-graph-api-lib/issues"
    },
    "homepage": "https://github.com/TiagoGrosso/instagram-graph-api-lib#readme"
}
