UNPKG

@flowdegree/swarmapp-api

Version:

A javascript wrapper for swarmapp (foursquare) API

56 lines 1.38 kB
{ "name": "@flowdegree/swarmapp-api", "version": "2.12.1", "description": "A javascript wrapper for swarmapp (foursquare) API", "main": "dist/index.js", "types": "./dist/index.d.ts", "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/flowdegree/swarmapp-api.git" }, "keywords": [ "api", "javascript", "typescript", "ts", "js", "swarm", "swarmapp", "foursquare", "wrapper", "checkin" ], "author": "Mohannad F. Otaibi", "license": "ISC", "bugs": { "url": "https://github.com/flowdegree/swarmapp-api/issues" }, "homepage": "https://github.com/flowdegree/swarmapp-api#readme", "dependencies": { "axios": "^0.26.1", "dotenv": "^16.3.1", "form-data": "^4.0.0", "lodash": "^4.17.21" }, "devDependencies": { "@changesets/cli": "^2.26.1", "@types/lodash": "^4.14.199", "@types/node": "^18.15.11", "jest": "^29.5.0", "shx": "^0.3.4", "ts-node": "^10.9.1", "tsup": "^6.7.0", "typescript": "^5.0.3" }, "scripts": { "test": "jest --coverage", "release": "pnpm run build && changeset publish", "clean": "shx rm -rf lib && shx rm -rf dist", "lint": "tsc", "build": "pnpm run clean && tsup src/index.ts --format cjs,esm --dts", "test:example": "ts-node test/example.ts" } }