instagram-scraper-api
Version:
Get user data and posts by scraping Instagram's user page. Without API key or oAuth!
50 lines • 1.51 kB
JSON
{
"name": "instagram-scraper-api",
"version": "1.0.1",
"description": "Get user data and posts by scraping Instagram's user page. Without API key or oAuth!",
"main": "./index.js",
"author": "BART! <bart@bartweb.cz>",
"scripts": {
"start": "tsc -w",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "npm-prepare-dist -s postinstall -s prepare",
"tsc": "tsc",
"demo": "ts-node demo",
"lint": "eslint ./src/**/**/* --fix",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"postversion": "git push && git push --follow-tags",
"release:patch": "git checkout master && npm version patch -m \"chore(update): patch release %s 🐛 \"",
"release:minor": "git checkout master && npm version minor -m \"chore(update): release %s 🚀\"",
"release:major": "git checkout master && npm version major -m \"chore(update): major release %s 💥 \""
},
"dependencies": {
"cross-fetch": "^3.1.4"
},
"repository": {
"url": "git+https://github.com/bartholomej/instagram-scraper-api.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/bartholomej/instagram-scraper-api/issues"
},
"homepage": "https://github.com/bartholomej/instagram-scraper-api#readme",
"keywords": [
"instagram",
"ig",
"photos",
"nodejs",
"node",
"typescript",
"scraper",
"parser",
"api"
],
"engines": {
"node": ">= 10"
},
"license": "MIT",
"module": "./index.js",
"types": "./index.d.ts"
}