angular-oauth2-oidc
Advanced tools
Comparing version
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 | ||
} | ||
} | ||
} |
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
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
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
8989231
2059.52%352
5766.67%18700
353.44%22
633.33%41
Infinity%1
Infinity%80
-20%2
100%1
Infinity%4
300%7
Infinity%2
Infinity%+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
- Removed