UNPKG

@accounts/client

Version:

Fullstack authentication and accounts-management

62 lines 1.37 kB
{ "name": "@accounts/client", "version": "0.33.1", "description": "Fullstack authentication and accounts-management", "main": "lib/index.js", "typings": "lib/index.d.ts", "publishConfig": { "access": "public" }, "files": [ "src", "lib" ], "jest": { "preset": "ts-jest", "testEnvironment": "jsdom", "setupFiles": [ "jest-localstorage-mock" ] }, "repository": { "type": "git", "url": "https://github.com/accounts-js/accounts/tree/master/packages/client" }, "keywords": [ "rest", "graphql", "grant", "auth", "authentication", "accounts", "users", "oauth" ], "author": "Tim Mikeladze", "license": "MIT", "devDependencies": { "@types/jest": "26.0.24", "@types/node": "16.4.13", "jest": "27.0.6", "jest-localstorage-mock": "2.4.14", "jsonwebtoken": "8.5.1", "localstorage-polyfill": "1.0.1", "rimraf": "3.0.2" }, "dependencies": { "@accounts/types": "^0.33.1", "jwt-decode": "3.1.2", "tslib": "2.3.0" }, "scripts": { "clean": "rimraf lib", "start": "tsc --watch", "precompile": "pnpm run clean", "compile": "tsc", "test": "npm run testonly", "test-ci": "npm lint && npm coverage", "testonly": "jest", "test:watch": "jest --watch", "coverage": "npm run testonly -- --coverage" } }