{
  "name": "instagrapi",
  "version": "5.0.0",
  "description": "Library to obtain information from an Instagram account in a friendly and intuitive way",
  "keywords": [
    "instagram",
    "api",
    "nodejs",
    "typescript"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "author": {
    "name": "Edixon Piña",
    "email": "edixonalbertto@gmail.com"
  },
  "license": "MIT",
  "private": false,
  "scripts": {
    "clean": "rimraf ./dist",
    "test": "jest",
    "lint-demo": "prettier --write demo/**/*.{js,css,html}",
    "lint-lib": "prettier --write src/**/*.ts",
    "dev": "nodemon --config",
    "pre-publish": "yarn build && yarn test && yarn try-publish",
    "try-publish": "npm publish --dry-run",
    "build-ts": "tsc && tsc-alias",
    "build": "yarn lint-lib && yarn clean && yarn build-ts",
    "start": "node server",
    "deploy": "gh-pages -o github -d ./demo",
    "serve": "live-server --host=localhost --port=80 ./demo"
  },
  "nodemonConfig": {
    "ext": ".ts,.env",
    "watch": [
      "./",
      "src/*"
    ],
    "verbose": false,
    "exec": "yarn build-ts && yarn start",
    "ignore": [
      "node_modules/",
      "dist/",
      "tests/"
    ]
  },
  "dependencies": {
    "axios": "^0.21.0"
  },
  "devDependencies": {
    "@types/jest": "^26.0.17",
    "dotenv": "^10.0.0",
    "express": "^4.17.3",
    "gh-pages": "^3.1.0",
    "jest": "^27.4.7",
    "live-server": "^1.2.1",
    "nodemon": "^2.0.2",
    "prettier": "^1.19.1",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.1.2",
    "tsc-alias": "^1.5.0",
    "tsconfig-paths-jest": "^0.0.1",
    "typescript": "^4.5.4"
  },
  "homepage": "https://github.com/EdixonAlberto/instagrapi#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/EdixonAlberto/instagrapi.git"
  },
  "bugs": {
    "url": "https://github.com/EdixonAlberto/instagrapi/issues"
  },
  "engines": {
    "node": ">=14.18.2",
    "yarn": "~1.22.0"
  }
}
