-
Notifications
You must be signed in to change notification settings - Fork 687
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.37 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.37 KB
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
{
"name": "angular-oauth2-oidc",
"version": "22.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",
"test:ci": "ng test lib --watch=false --browsers=ChromeHeadless && ng test sample --watch=false --browsers=ChromeHeadless && ng test quickstart-demo --watch=false --browsers=ChromeHeadless && ng test quickstart-standalone --watch=false --browsers=ChromeHeadless && ng test angular-oauth2-oidc-jwks --watch=false --browsers=ChromeHeadless",
"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"
},
"dependencies": {
"@angular/common": "^22.0.4",
"@angular/compiler": "^22.0.4",
"@angular/core": "^22.0.4",
"@angular/forms": "^22.0.4",
"@angular/platform-browser": "^22.0.4",
"@angular/platform-browser-dynamic": "^22.0.4",
"@angular/router": "^22.0.4",
"angular-oauth2-oidc": "^22.0.2",
"bootstrap": "^5.3.8",
"jsrsasign": "^11.1.3",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.16.2"
},
"devDependencies": {
"@angular-eslint/builder": "^22.0.0",
"@angular/build": "^22.0.4",
"@angular/cli": "^22.0.4",
"@angular/compiler-cli": "^22.0.4",
"@angular/language-service": "^22.0.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@compodoc/compodoc": "^1.2.1",
"@eslint/js": "^10.0.1",
"@types/jasmine": "~3.8.2",
"@types/node": "^24.13.2",
"angular-eslint": "^22.0.0",
"commitizen": "^4.3.2",
"conventional-changelog-cli": "^5.0.0",
"cpr": "^3.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^10.6.0",
"github-contributors-list": "^1.2.5",
"husky": "^7.0.4",
"jasmine-core": "~3.8.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-cli": "~2.0.0",
"karma-coverage": "^2.2.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.2",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "^22.0.0",
"prettier": "^3.9.4",
"standard-version": "^9.5.0",
"ts-node": "~10.9.2",
"typescript": "~6.0.3",
"typescript-eslint": "^8.62.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}