instagram-graph-api
Version:
A library to help perform requests to the Instagram Graph API.
98 lines (97 loc) • 3.3 kB
JSON
{
"name": "instagram-graph-api",
"version": "7.0.0",
"main": "lib/index.js",
"types": "lib/Index.d.ts",
"scripts": {
"build": "rollup -c",
"build:dev": "NODE_ENV=dev rollup -c",
"cti": "cti entrypoint src/ -o Index.ts -e test -e it",
"test": "jest --coverage --testPathPattern=src/test/",
"test_watch": "jest --watch --testPathPattern=src/test/",
"integration-test": "jest --testPathPattern=src/it/",
"docs": "typedoc --out docs src/Index.ts README.md",
"format": "prettier --write src",
"check-format": "prettier --check src",
"lint": "eslint src",
"commit": "commit",
"prepare": "husky install"
},
"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.",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-angular": "^19.3.0",
"@commitlint/prompt-cli": "^19.3.1",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.12",
"@types/retry": "^0.12.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"create-ts-index": "^1.14.0",
"dotenv": "^16.0.3",
"eslint": "^8.27.0",
"eslint-config-google": "^0.14.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "3.3.3",
"retry": "^0.13.1",
"rollup": "^2.52.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.1",
"typedoc": "^0.26.3",
"typescript": "^5.5.3",
"uuid": "^10.0.0"
},
"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",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/github",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "changelog/CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"docs/*",
"changelog/*"
],
"message": "chore(release): Release ${nextRelease.version} docs\n\n${nextRelease.notes}"
}
]
]
}
}