@zestic/oauth-core
Version:
Framework-agnostic OAuth authentication library with support for multiple OAuth flows
60 lines (59 loc) • 1.71 kB
JSON
{
"name": "@zestic/oauth-core",
"version": "0.4.1",
"description": "Framework-agnostic OAuth authentication library with support for multiple OAuth flows",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --watchAll=false --passWithNoTests --testPathIgnorePatterns=tests/",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"lint:check": "eslint src/**/*.ts --max-warnings 0",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist coverage",
"prepublishOnly": "yarn clean && yarn build",
"ci": "yarn lint:check && yarn type-check && yarn test:ci && yarn build"
},
"keywords": [
"oauth",
"authentication",
"pkce",
"authorization-code",
"magic-link",
"graphql",
"typescript"
],
"author": "Zestic",
"license": "Apache-2.0",
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-util": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/zestic/oauth-core.git"
},
"bugs": {
"url": "https://github.com/zestic/oauth-core/issues"
},
"homepage": "https://github.com/zestic/oauth-core#readme",
"packageManager": "yarn@4.9.0"
}