You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

angular-oauth2-oidc

Package Overview
Dependencies
Maintainers
2
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-oauth2-oidc - npm Package Compare versions

Comparing version

to
20.0.1

.editorconfig

120

package.json
{
"name": "angular-oauth2-oidc",
"version": "20.0.0",
"version": "20.0.1",
"license": "MIT",
"author": {
"name": "Manfred Steyer"
"scripts": {
"release": "standard-version",
"ng": "ng",
"start": "ng serve --project sample -o",
"build": "npm run prettier && ng build --configuration production --project lib && npm run copy:readme && npm run copy:license && npm run docs",
"build:jwks": "npm run prettier && ng build angular-oauth2-oidc-jwks --ts-config tsconfig.npm.json && npm run copyfiles:jwks",
"test": "ng test",
"lint": "ng lint lib",
"e2e": "ng e2e",
"tsc": "tsc",
"prettier": "prettier --write projects/**/*.ts",
"docs": "npm run docs:build -- --disableCoverage --disablePrivate --disableInternal --includes docs-src",
"docs:build": "compodoc -p projects/lib/tsconfig.lib.json -n angular-oauth2-oidc -d docs --hideGenerator",
"docs:serve": "npm run docs:build -- -s",
"docs:watch": "npm run docs:build -- -s -w",
"format": "prettier --single-quote --write projects/**/*.ts",
"copy:readme": "cpr README.md dist/lib/README.md --overwrite",
"copy:license": "cpr LICENSE dist/lib/LICENSE --overwrite",
"copyfiles:jwks": "cpr README.md dist/angular-oauth2-oidc-jwks/README.md --overwrite && cpr LICENSE dist/angular-oauth2-oidc-jwks/LICENSE --overwrite",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"contributer": "git shortlog -s 9.0.0..HEAD"
},
"description": "Support for OAuth 2(.1) and OpenId Connect (OIDC) in Angular",
"repository": {
"type": "github",
"url": "https://github.com/manfredsteyer/angular-oauth2-oidc"
"dependencies": {
"@angular/animations": "^20.0.0",
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/elements": "^20.0.0",
"@angular/forms": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/platform-browser-dynamic": "^20.0.0",
"@angular/router": "^20.0.0",
"@popperjs/core": "^2.9.2",
"@webcomponents/custom-elements": "^1.4.3",
"angular-oauth2-oidc": "^20.0.0",
"angular-oauth2-oidc-jwks": "^20.0.0",
"base64-js": "^1.5.1",
"bootstrap": "^3.4.1",
"fast-sha256": "^1.3.0",
"jsrsasign": "^11.1.0",
"rxjs": "^6.6.7",
"rxjs-compat": "^6.6.7",
"text-encoder-lite": "^2.0.0",
"tslib": "^2.5.2",
"zone.js": "~0.15.0"
},
"peerDependencies": {
"@angular/common": ">=20.0.0",
"@angular/core": ">=20.0.0"
"devDependencies": {
"@angular-eslint/builder": "19.0.0",
"@angular-eslint/eslint-plugin": "18.4.3",
"@angular-eslint/eslint-plugin-template": "19.0.0",
"@angular-eslint/schematics": "19.0.0",
"@angular-eslint/template-parser": "19.0.0",
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/language-service": "^20.0.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^12.1.4",
"@compodoc/compodoc": "^1.1.14",
"@types/jasmine": "~3.8.1",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^18.19.110",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@typescript-eslint/types": "^7.18.0",
"@typescript-eslint/utils": "^7.18.0",
"codelyzer": "^6.0.2",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cpr": "^3.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"github-contributors-list": "^1.2.5",
"husky": "^7.0.1",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.2",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "^20.0.0",
"prettier": "^2.8.8",
"standard-version": "^9.3.1",
"ts-node": "~10.1.0",
"tslint": "~6.1.0",
"typescript": "~5.8.3"
},
"dependencies": {
"tslib": "^2.5.2"
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"module": "fesm2022/angular-oauth2-oidc.mjs",
"typings": "index.d.ts",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./index.d.ts",
"default": "./fesm2022/angular-oauth2-oidc.mjs"
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"sideEffects": false
}
}
}