Skip to content

Commit 52561b2

Browse files
Merge pull request #1031 from schackito/jwks-lib-adding-license
jwks adding license
2 parents 2802bc0 + 82693d7 commit 52561b2

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"ng": "ng",
88
"start": "ng serve --project sample -o",
99
"build": "npm run prettier && ng build --prod --project lib && npm run copy:readme && npm run copy:license && npm run docs",
10-
"build:jwks": "npm run prettier && ng build angular-oauth2-oidc-jwks --ts-config tsconfig.npm.json",
10+
"build:jwks": "npm run prettier && ng build angular-oauth2-oidc-jwks --ts-config tsconfig.npm.json && npm run copyfiles:jwks",
1111
"test": "ng test",
1212
"lint": "ng lint",
1313
"e2e": "ng e2e",
@@ -20,6 +20,7 @@
2020
"format": "prettier --single-quote --write projects/**/*.ts",
2121
"copy:readme": "cpr README.md dist/lib/README.md --overwrite",
2222
"copy:license": "cpr LICENSE dist/lib/LICENSE --overwrite",
23+
"copyfiles:jwks": "cpr README.md dist/angular-oauth2-oidc-jwks/README.md --overwrite && cpr LICENSE dist/angular-oauth2-oidc-jwks/LICENSE --overwrite",
2324
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
2425
"contributer": "git shortlog -s 9.0.0..HEAD"
2526
},
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
{
22
"name": "angular-oauth2-oidc-jwks",
3+
"license": "MIT",
4+
"author": {
5+
"name": "Manfred Steyer"
6+
},
37
"version": "10.0.0",
8+
"repository": "manfredsteyer/angular-oauth2-oidc",
49
"dependencies": {
5-
"jsrsasign": "^8.0.12"
6-
, "tslib": "^2.0.0"
7-
}
10+
"jsrsasign": "^8.0.12",
11+
"tslib": "^2.0.0"
12+
}
813
}

0 commit comments

Comments
 (0)