lukemnet/fastify-twitch-ebs-tools

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "fastify-twitch-ebs-tools",
  "version": "2.1.3",
  "description": "Fastify plugin providing useful functions for Twitch Extension Backend Services (EBS)",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "typings": "dist/index.d.ts",
  "scripts": {
    "test": "jest",
    "test:cov": "jest --coverage",
    "clearTestCache": "jest --clearCache",
    "clean": "rimraf dist/*",
    "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
    "lint": "eslint . --ext .ts",
    "compile": "rollup -c",
    "build": "npm run lint && npm run test:cov && npm run clean && npm run compile",
    "dev": "tsc -w --project tsconfig.json",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lwojcik/fastify-twitch-ebs-tools.git"
  },
  "author": {
    "name": "Łukasz Wójcik",
    "url": "https://lukem.net/"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lwojcik/fastify-twitch-ebs-tools/issues"
  },
  "homepage": "https://github.com/lwojcik/fastify-twitch-ebs-tools",
  "dependencies": {
    "fastify": "^4.14.1",
    "fastify-plugin": "^4.5.0",
    "twitch-ebs-tools": "^2.0.8"
  },
  "devDependencies": {
    "@types/jest": "^29.4.3",
    "@types/jsonwebtoken": "^9.0.1",
    "@types/node": "^18.15.3",
    "@typescript-eslint/eslint-plugin": "^5.55.0",
    "@typescript-eslint/parser": "^5.55.0",
    "esbuild": "^0.17.11",
    "eslint": "^8.36.0",
    "eslint-config-airbnb-typescript": "^17.0.0",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-jest": "^27.2.1",
    "jest": "^29.5.0",
    "jsonwebtoken": "^9.0.0",
    "rimraf": "^4.4.0",
    "rollup": "^3.19.1",
    "rollup-plugin-dts": "^5.2.0",
    "rollup-plugin-esbuild": "^5.0.0",
    "ts-jest": "^29.0.5",
    "typescript": "^4.9.5"
  },
  "keywords": [
    "fastify",
    "twitch",
    "extension",
    "backend",
    "ebs",
    "twitch-extensions",
    "extension-backend-service",
    "twitch-ext"
  ]
}