Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"ng": "ng",
"start": "ng serve --project sample -o",
"build": "npm run prettier && ng build --prod --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",
"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",
"e2e": "ng e2e",
Expand All @@ -20,6 +20,7 @@
"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"
},
Expand Down
11 changes: 8 additions & 3 deletions projects/angular-oauth2-oidc-jwks/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"name": "angular-oauth2-oidc-jwks",
"license": "MIT",
"author": {
"name": "Manfred Steyer"
},
"version": "10.0.0",
"repository": "manfredsteyer/angular-oauth2-oidc",
"dependencies": {
"jsrsasign": "^8.0.12"
, "tslib": "^2.0.0"
}
"jsrsasign": "^8.0.12",
"tslib": "^2.0.0"
}
}