UNPKG

fitbit-oauth2-client

Version:
76 lines (75 loc) 2.3 kB
{ "name": "fitbit-oauth2-client", "version": "0.1.8", "description": "Fitbit client API for OAuth2", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist/**" ], "scripts": { "build": "tsup src/index.ts --format esm,cjs --dts --sourcemap", "build:dev": "tsup src/index.ts --format esm,cjs --watch --dts", "lint": "TIMING=1 eslint . --ext .ts --fix", "clean": "rm -rf build && rm -rf dist && rm -rf coverage", "clean-all": "npm run clean && rm -rf node_modules", "test": "cross-env TZ=Europe/Stockholm ./node_modules/.bin/jest --coverage --verbose", "prepublishOnly": "npm run lint && npm run test && npm run build", "changeset": "changeset", "version-packages": "changeset version", "sample-express-server": "ts-node samples/express-example.ts", "publish-beta": "npm publish --tag beta", "prettier-format": "prettier --write *.{js,jsx,ts,tsx,scss,css,md,json}", "prepare": "husky install" }, "keywords": [ "fitbit", "oauth2" ], "author": "Björn Sjögren", "contributors": [ "Andrew Peebles" ], "repository": { "type": "git", "url": "https://github.com/lokanx/fitbit-oauth2-client.git" }, "license": "ISC", "dependencies": { "axios": "1.5.1", "dayjs": "1.11.10", "qs": "6.11.2", "simple-oauth2": "5.0.0" }, "devDependencies": { "@changesets/cli": "2.26.2", "@jest/globals": "29.7.0", "@rushstack/eslint-patch": "1.5.1", "@types/express": "4.17.18", "@types/qs": "6.9.8", "@types/simple-oauth2": "5.0.5", "@typescript-eslint/eslint-plugin": "6.7.5", "@typescript-eslint/parser": "6.7.5", "axios-mock-adapter": "1.22.0", "cross-env": "^7.0.3", "dotenv": "16.3.1", "eslint": "8.51.0", "eslint-config-prettier": "9.0.0", "eslint-plugin-import": "2.28.1", "eslint-plugin-jest": "27.4.2", "eslint-plugin-node": "11.1.0", "eslint-plugin-prettier": "5.0.0", "eslint-plugin-security": "1.7.1", "express": "4.18.2", "express-rate-limit": "7.1.1", "husky": "8.0.3", "jest": "29.7.0", "lint-staged": "14.0.1", "prettier": "3.0.3", "ts-jest": "29.1.1", "ts-node": "10.9.1", "tsup": "7.2.0", "typescript": "5.2.2" } }