-
Notifications
You must be signed in to change notification settings - Fork 686
/
package.json
103 lines (103 loc) · 3.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "angular-oauth2-oidc",
"version": "17.0.0",
"license": "MIT",
"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"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.0.7",
"@angular/common": "^17.0.7",
"@angular/compiler": "^17.0.7",
"@angular/core": "^17.0.7",
"@angular/elements": "^17.0.7",
"@angular/forms": "^17.0.7",
"@angular/platform-browser": "^17.0.7",
"@angular/platform-browser-dynamic": "^17.0.7",
"@angular/router": "^17.0.7",
"@popperjs/core": "^2.9.2",
"@webcomponents/custom-elements": "^1.4.3",
"angular-oauth2-oidc": "^15.0.1",
"angular-oauth2-oidc-jwks": "^15.0.1",
"base64-js": "^1.5.1",
"bootstrap": "^3.4.1",
"fast-sha256": "^1.3.0",
"jsrsasign": "^11.0.0",
"rxjs": "^6.5.3",
"rxjs-compat": "^6.6.7",
"text-encoder-lite": "^2.0.0",
"tslib": "^2.5.2",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.7",
"@angular-eslint/builder": "16.0.2",
"@angular-eslint/eslint-plugin": "16.0.2",
"@angular-eslint/eslint-plugin-template": "16.0.2",
"@angular-eslint/schematics": "16.0.2",
"@angular-eslint/template-parser": "16.0.2",
"@angular/cli": "^17.0.7",
"@angular/compiler-cli": "^17.0.7",
"@angular/language-service": "^17.0.7",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@compodoc/compodoc": "^1.1.14",
"@types/jasmine": "~3.8.1",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^16.18.34",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"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.40.0",
"github-contributors-list": "^1.2.5",
"husky": "^7.0.1",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "^17.0.2",
"prettier": "^2.3.2",
"standard-version": "^9.3.1",
"ts-node": "~10.1.0",
"tslint": "~6.1.0",
"typescript": "~5.2.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}