forked from damienbod/angular-auth-oidc-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 5.78 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
104
105
106
107
108
109
110
{
"name": "angular-auth-oidc-client",
"author": "Damien Bowden & Fabian Gosebrink",
"repository": {
"type": "git",
"url": "https://github.com/damienbod/angular-auth-oidc-client.git"
},
"bugs": {
"url": "https://github.com/damienbod/angular-auth-oidc-client/issues"
},
"version": "14.0.0",
"scripts": {
"ng": "ng",
"build": "npm run build-lib",
"build-app": "ng build sample-code-flow",
"watch-lib": "ng build angular-auth-oidc-client --watch --configuration development",
"build-lib": "ng build angular-auth-oidc-client --configuration development && npm run copy",
"build-all-samples": "node ./tools/build-all-angular-projects.js",
"build-lib-prod": "ng build angular-auth-oidc-client --configuration production && npm run schematics-build && npm run copy",
"test-lib": "ng test angular-auth-oidc-client --code-coverage",
"test-lib-ci": "ng test angular-auth-oidc-client --watch=false --browsers=ChromeHeadlessNoSandbox --code-coverage",
"lint-lib": "ng lint angular-auth-oidc-client",
"pack-lib": "npm run build-lib-prod && npm pack ./dist/angular-auth-oidc-client",
"publish-lib": "npm run build-lib-prod && npm publish ./dist/angular-auth-oidc-client",
"publish-lib-next": "npm run build-lib && npm publish --tag next ./dist/angular-auth-oidc-client",
"copy-readme-to-lib-folder": "ncp README.md ./dist/angular-auth-oidc-client/README.md",
"copy-license-to-lib-folder": "ncp LICENSE ./dist/angular-auth-oidc-client/LICENSE",
"start-docs": "cd \"docs/site/angular-auth-oidc-client\" && npm start",
"build-docs": "cd \"docs/site/angular-auth-oidc-client\" && npm run build",
"check-prettier": "prettier --check \"projects/angular-auth-oidc-client/**/*.*\"",
"fix-prettier": "prettier --write \"projects/**/*.*\"",
"coveralls": "cat ./coverage/angular-auth-oidc-client/lcov.info | coveralls",
"start": "ng serve sample-code-flow-refresh-tokens --ssl -o",
"start-sample-code-flow-auto-login": "ng serve sample-code-flow-auto-login --ssl -o",
"start-sample-code-flow-auto-login-all-routes": "ng serve sample-code-flow-auto-login-all-routes --ssl -o",
"start-sample-code-flow-popup": "ng serve sample-code-flow-popup --ssl -o",
"start-sample-code-flow-http-config": "ng serve sample-code-flow-http-config --ssl -o",
"start-sample-code-flow-refresh-tokens": "ng serve sample-code-flow-refresh-tokens --ssl -o",
"start-sample-code-flow-auth0": "ng serve sample-code-flow-auth0 --ssl -o",
"start-sample-code-flow-par": "ng serve sample-code-flow-par -o",
"start-sample-code-flow-azure-b2c": "ng serve sample-code-flow-azure-b2c --ssl -o",
"start-sample-code-flow-azuread": "ng serve sample-code-flow-azuread --ssl -o",
"start-sample-code-flow-multi-Auth0-ID4": "ng serve sample-code-flow-multi-Auth0-ID4 --ssl -o",
"start-sample-code-flow-multi-Auth0-ID4-popup": "ng serve sample-code-flow-multi-Auth0-ID4-popup --ssl -o",
"start-sample-code-flow-multi-AAD": "ng serve sample-code-flow-multi-AAD --ssl -o",
"start-sample-code-flow-multi-Azure-B2C": "ng serve sample-code-flow-multi-Azure-B2C --ssl -o",
"start-sample-code-flow-multi-iframe": "ng serve sample-code-flow-multi-iframe --ssl -o",
"start-sample-implicit-flow-google": "ng serve sample-implicit-flow-google --ssl -o",
"start-sample-implicit-flow-silent-renew": "ng serve sample-implicit-flow-silent-renew --ssl -o",
"start-sample-code-flow-lazy-loaded": "ng serve sample-code-flow-lazy-loaded --ssl --port=4204 -o",
"e2e": "ng e2e",
"schematics-copy": "npm run schematics-ngadd-copy && ncp projects/schematics/src/collection.json ./dist/angular-auth-oidc-client/schematics/collection.json",
"schematics-ngadd-copy": "ncp projects/schematics/src/ng-add/files ./dist/angular-auth-oidc-client/schematics/ng-add/files && ncp projects/schematics/src/ng-add/schema.json ./dist/angular-auth-oidc-client/schematics/ng-add/schema.json",
"schematics-build": "tsc -p projects/schematics/tsconfig.json && npm run schematics-copy",
"copy": "npm run copy-readme-to-lib-folder && npm run copy-license-to-lib-folder"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.0.1",
"@angular/common": "~13.0.1",
"@angular/compiler": "~13.0.1",
"@angular/core": "~13.0.1",
"@angular/forms": "~13.0.1",
"@angular/platform-browser": "~13.0.1",
"@angular/platform-browser-dynamic": "~13.0.1",
"@angular/router": "~13.0.1",
"@schematics/angular": "~13.0.1",
"rxjs": "^7.4.0",
"tslib": "^2.1.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.0.2",
"@angular-devkit/core": "^13.0.2",
"@angular-devkit/schematics": "^13.0.2",
"@angular-eslint/builder": "12.6.1",
"@angular-eslint/eslint-plugin": "12.6.1",
"@angular-eslint/eslint-plugin-template": "12.6.1",
"@angular-eslint/schematics": "12.6.1",
"@angular-eslint/template-parser": "12.6.1",
"@angular/cli": "~13.0.2",
"@angular/compiler-cli": "~13.0.1",
"@arkweid/lefthook": "^0.7.7",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "5.8.0",
"@typescript-eslint/parser": "5.8.0",
"coveralls": "^3.1.0",
"eslint": "^7.26.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"fs-extra": "^10.0.0",
"jasmine-core": "~3.7.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ncp": "^2.0.0",
"ng-packagr": "^13.0.3",
"prettier": "^2.2.1",
"protractor": "~7.0.0",
"rfc4648": "^1.5.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.4.3"
}
}