@jmondi/oauth2-server
Advanced tools
Comparing version 0.2.0-beta.2 to 0.2.0-beta.3
@@ -1,1 +0,32 @@ | ||
export * from "~/authorization_server"; | ||
export * from "./authorization_server"; | ||
export * from "./code_verifiers/plain.verifier"; | ||
export * from "./code_verifiers/s256.verifier"; | ||
export * from "./code_verifiers/verifier"; | ||
export * from "./entities/auth_code.entity"; | ||
export * from "./entities/client.entity"; | ||
export * from "./entities/scope.entity"; | ||
export * from "./entities/token.entity"; | ||
export * from "./entities/user.entity"; | ||
export * from "./exceptions/oauth.exception"; | ||
export * from "./grants/auth_code.grant"; | ||
export * from "./grants/client_credentials.grant"; | ||
export * from "./grants/implicit.grant"; | ||
export * from "./grants/password.grant"; | ||
export * from "./grants/refresh_token.grant"; | ||
export * from "./grants/abstract/abstract.grant"; | ||
export * from "./grants/abstract/abstract_authorized.grant"; | ||
export * from "./grants/abstract/grant.interface"; | ||
export * from "./repositories/access_token.repository"; | ||
export * from "./repositories/auth_code.repository"; | ||
export * from "./repositories/client.repository"; | ||
export * from "./repositories/scope.repository"; | ||
export * from "./repositories/user.repository"; | ||
export * from "./requests/authorization.request"; | ||
export * from "./requests/request"; | ||
export * from "./responses/bearer_token.response"; | ||
export * from "./responses/redirect.response"; | ||
export * from "./responses/response"; | ||
export * from "./utils/array"; | ||
export * from "./utils/base64"; | ||
export * from "./utils/jwt"; | ||
export * from "./utils/time"; |
{ | ||
"version": "0.2.0-beta.2", | ||
"version": "0.2.0-beta.3", | ||
"license": "MIT", | ||
@@ -17,5 +17,6 @@ "name": "@jmondi/oauth2-server", | ||
"scripts": { | ||
"prebuild": "rimraf dist", | ||
"build": "cross-env TS_NODE_PROJECT=tsconfig.webpack.json webpack --config webpack.config.ts", | ||
"build:prod": "cross-env NODE_ENV=production TS_NODE_PROJECT=tsconfig.webpack.json webpack --config webpack.config.ts", | ||
"prebuild": "run-s clean create-exports", | ||
"clean": "rimraf dist", | ||
"create-exports": "barrelsby -d src/ --delete", | ||
"build": "cross-env NODE_ENV=production TS_NODE_PROJECT=tsconfig.webpack.json webpack --config webpack.config.ts", | ||
"format": "prettier --write \"{src,test,examples}/**/*.(t|j)s*\"", | ||
@@ -39,2 +40,3 @@ "lint": "eslint \"{src,test}/**/*.ts\" --fix", | ||
"@typescript-eslint/parser": "^4.2.0", | ||
"barrelsby": "^2.2.0", | ||
"body-parser": "^1.19.0", | ||
@@ -48,2 +50,3 @@ "cross-env": "^7.0.2", | ||
"jest-date-mock": "^1.0.8", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.1.2", | ||
@@ -50,0 +53,0 @@ "rimraf": "^3.0.2", |
@@ -1,1 +0,36 @@ | ||
export * from "~/authorization_server"; | ||
/** | ||
* @file Automatically generated by barrelsby. | ||
*/ | ||
export * from "./authorization_server"; | ||
export * from "./code_verifiers/plain.verifier"; | ||
export * from "./code_verifiers/s256.verifier"; | ||
export * from "./code_verifiers/verifier"; | ||
export * from "./entities/auth_code.entity"; | ||
export * from "./entities/client.entity"; | ||
export * from "./entities/scope.entity"; | ||
export * from "./entities/token.entity"; | ||
export * from "./entities/user.entity"; | ||
export * from "./exceptions/oauth.exception"; | ||
export * from "./grants/auth_code.grant"; | ||
export * from "./grants/client_credentials.grant"; | ||
export * from "./grants/implicit.grant"; | ||
export * from "./grants/password.grant"; | ||
export * from "./grants/refresh_token.grant"; | ||
export * from "./grants/abstract/abstract.grant"; | ||
export * from "./grants/abstract/abstract_authorized.grant"; | ||
export * from "./grants/abstract/grant.interface"; | ||
export * from "./repositories/access_token.repository"; | ||
export * from "./repositories/auth_code.repository"; | ||
export * from "./repositories/client.repository"; | ||
export * from "./repositories/scope.repository"; | ||
export * from "./repositories/user.repository"; | ||
export * from "./requests/authorization.request"; | ||
export * from "./requests/request"; | ||
export * from "./responses/bearer_token.response"; | ||
export * from "./responses/redirect.response"; | ||
export * from "./responses/response"; | ||
export * from "./utils/array"; | ||
export * from "./utils/base64"; | ||
export * from "./utils/jwt"; | ||
export * from "./utils/time"; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
500488
6856
29
4
1