-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.91 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
{
"name": "auth-angular",
"version": "0.4.7",
"description": "Authing Service/Provider for Angular",
"scripts": {
"clean": "shx rm -fr dist",
"lint": "npm run lint:ts",
"lint:ts": "tslint --project tsconfig.json && tsc --noEmit",
"ng:packagr": "ng-packagr -p package.json",
"test": "npm run lint && echo npm test TBW",
"test:pack": "echo packing test TBW"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huan/auth-angular.git"
},
"keywords": [
"auth0",
"angular",
"service",
"provider",
"lock"
],
"author": "Huan LI <zixia@zixia.net>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/huan/auth-angular/issues"
},
"homepage": "https://github.com/huan/auth-angular#readme",
"devDependencies": {
"@angular/common": "^11.0.0",
"@angular/compiler": "^10.0.1",
"@angular/compiler-cli": "^7.1.0",
"@angular/core": "^11.0.0",
"@types/auth0-js": "^9.13.1",
"@auth0/angular-jwt": "^5.0.0",
"@types/auth0-lock": "^11.4.7",
"@types/blue-tape": "^0.1.31",
"@types/node": "^16.9.0",
"@types/semver": "^7.2.0",
"auth0-js": "^9.4.2",
"auth0-lock": "^11.7.1",
"blue-tape": "^1.0.0",
"brolog": "^1.6.4",
"git-scripts": "^0.4.3",
"ng-packagr": "^10.0.0",
"rxjs": "^7.0.0",
"semver": "^7.3.2",
"shx": "^0.3.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "~3.1.6"
},
"peerDependencies": {
"@angular/core": "^6.0.0",
"@auth0/angular-jwt": "^5.0.0",
"auth0-js": "^9.4.2",
"auth0-lock": "^11.5.2",
"brolog": "^1.2.17",
"rxjs": "^7.0.0"
},
"dependencies": {},
"git": {
"scripts": {
"pre-push": "./scripts/pre-push.sh"
}
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"ngPackage": {
"lib": {
"entryFile": "public_api.ts"
},
"whitelistedNonPeerDependencies": []
}
}