forked from damienbod/angular-auth-oidc-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 4.24 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
{
"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": "11.2.3",
"scripts": {
"ng": "ng",
"build": "npm run build-lib",
"build-app": "ng build sample-code-flow",
"watch-lib": "ng build angular-auth-oidc-client --watch",
"build-lib": "ng build angular-auth-oidc-client && npm run copy-readme-to-lib-folder && npm run copy-licence-to-lib-folder",
"build-lib-prod": "ng build angular-auth-oidc-client --prod && npm run copy-readme-to-lib-folder && npm run copy-licence-to-lib-folder",
"test-lib": "ng test angular-auth-oidc-client --code-coverage",
"test-lib-ci": "ng test angular-auth-oidc-client --watch=false --browsers=ChromeHeadless --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",
"compodoc": "compodoc -p tsconfig.json",
"compodoc:serve": "compodoc -s",
"copy-readme-to-lib-folder": "copyfiles README.md ./dist/angular-auth-oidc-client",
"copy-licence-to-lib-folder": "copyfiles LICENSE ./dist/angular-auth-oidc-client",
"check-prettier": "prettier --check \"projects/angular-auth-oidc-client/**/*.ts\"",
"fix-prettier": "prettier --write \"projects/angular-auth-oidc-client/**/*.ts\"",
"start": "ng serve --ssl true --project sample-code-flow -o",
"coveralls": "cat ./coverage/angular-auth-oidc-client/lcov.info | coveralls",
"start-sample-code-flow-auto-login": "ng serve --ssl true sample-code-flow-auto-login -o",
"start-sample-code-flow": "ng serve --ssl true --project sample-code-flow -o",
"start-sample-code-flow-http-config": "ng serve --ssl true sample-code-flow-http-config -o",
"start-sample-code-flow-refresh-tokens": "ng serve --ssl true sample-code-flow-refresh-tokens -o",
"start-sample-code-flow-azure-b2c": "ng serve --ssl true sample-code-flow-azure-b2c -o",
"start-sample-code-flow-azuread": "ng serve --ssl true sample-code-flow-azuread -o",
"start-sample-implicit-flow-google": "ng serve --ssl true sample-implicit-flow-google -o",
"start-sample-implicit-flow-silent-renew": "ng serve --ssl true sample-implicit-flow-silent-renew -o",
"start-sample-code-flow-lazy-loaded": "ng serve --ssl true sample-code-flow-lazy-loaded --port=4204 -o"
},
"private": true,
"dependencies": {
"@angular/animations": "~9.1.1",
"@angular/common": "~9.1.1",
"@angular/compiler": "~9.1.1",
"@angular/core": "~9.1.1",
"@angular/forms": "~9.1.1",
"@angular/platform-browser": "~9.1.1",
"@angular/platform-browser-dynamic": "~9.1.1",
"@angular/router": "~9.1.1",
"common-tags": "^1.8.0",
"coveralls": "^3.1.0",
"jsrsasign-reduced": "^8.0.15",
"rxjs": "~6.5.4",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.901.7",
"@angular-devkit/build-ng-packagr": "~0.901.1",
"@angular/cli": "~9.1.1",
"@angular/compiler-cli": "~9.1.1",
"@angular/language-service": "~9.1.1",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.12.35",
"codelyzer": "^5.1.2",
"copyfiles": "^2.2.0",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~3.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"ng-packagr": "^9.0.0",
"prettier": "^2.0.4",
"protractor": "~5.4.3",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~3.8.3"
}
}