-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.06 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.06 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@okta/okta-angular-root",
"private": true,
"version": "0.7.0",
"type": "module",
"scripts": {
"ng": "ng",
"build": "ng build okta-angular",
"banners": "node util/maintain-banners.js",
"build:package-info": "node ./util/write-package-info.js . lib/src/okta/packageInfo.ts",
"clean": "rimraf dist/ && rimraf test-reports/",
"lint": "ng lint",
"lint:report": "ng lint --output-file ./test-reports/lint/eslint-checkstyle-result.xml --format checkstyle",
"prebuild": "yarn build:package-info",
"prepare": "yarn build",
"start": "yarn --cwd test/e2e/harness/ start",
"test": "yarn lint && yarn test:e2e && yarn test:unit",
"test:e2e": "yarn workspace @okta/test.e2e start",
"test:unit": "ng test okta-angular",
"test:apps:build": "sh ./scripts/build-test-apps.sh",
"pretest:e2e": "sh ./scripts/build-test-apps.sh"
},
"engines": {
"node": ">=18.19.1",
"yarn": "^1.7.0"
},
"repository": "https://github.com/okta/okta-angular",
"homepage": "https://github.com/okta/okta-angular",
"keywords": [
"okta",
"oidc",
"OpenID Connect",
"authentication",
"auth",
"oauth2"
],
"license": "Apache-2.0",
"devDependencies": {
"@angular-builders/jest": "^16.0.1",
"@angular-devkit/build-angular": "^16.2.16",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/animations": "^16.2.0",
"@angular/cli": "^16.2.10",
"@angular/common": "^16.2.0",
"@angular/compiler": "^16.2.0",
"@angular/compiler-cli": "^16.2.0",
"@angular/core": "^16.2.0",
"@angular/platform-browser": "^16.2.0",
"@angular/platform-browser-dynamic": "^16.2.0",
"@angular/router": "^16.2.0",
"@okta/okta-auth-js": "^7.1.0",
"@types/jest": "^29.5.7",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"dotenv": "^16.4.7",
"eslint": "^8.51.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-node": "^11.1.0",
"globby": "^11.0.1",
"husky": "^7.0.4",
"jest": "^29.7.0",
"jest-junit": "^13.2.0",
"jest-preset-angular": "^13.1.4",
"ng-packagr": "^16.2.0",
"rimraf": "^3.0.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"typescript": "~5.1.3",
"zone.js": "~0.13.0"
},
"resolutions": {
"**/chokidar/glob-parent": "^6.0.2",
"**/@angular-devkit/build-angular/minimatch": "^3.1.2",
"**/@angular-devkit/build-angular/babel-loader": "^8.3.0",
"**/@angular-devkit/build-angular/loader-utils": "^2.0.4",
"**/@angular-devkit/build-angular/webpack-dev-server": "^4.15.2",
"**/@angular-devkit/build-angular/core-js": "^3.39.0",
"**/nx/minimatch": "^3.1.2",
"**/postcss-url/minimatch": "^3.1.2",
"**/globule/minimatch": "^3.1.2"
},
"sideEffects": false,
"workspaces": {
"packages": [
"lib",
"test/e2e"
],
"nohoist": [
"test/apps/*",
"**/@wdio/**"
]
}
}