-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "@appzmonster/msal-token-interceptor",
"version": "1.0.1",
"description": "Msal-Token-Interceptor is a request interceptor which uses Microsoft MSAL to handle OAuth 2.0 token exchange with Microsoft Identity Platform during a fetch request. This is part of fetch-interceptor family.",
"main": "index.js",
"scripts": {
"prebuild": "rm -rf dist && mkdir dist && cp ./package.json dist && cp ./README.md dist && cp ./LICENSE dist && cp ./CHANGELOG.md dist",
"build": "npm run prebuild && babel ./src -d dist --copy-files",
"publish:npm": "npm run build && cd dist && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/appzmonster/msal-token-interceptor.git"
},
"keywords": [
"token",
"bearer",
"bearer-authentication",
"jwt",
"intercept",
"interceptor",
"request",
"xhr",
"fetch",
"fetch-api",
"oauth2",
"openid-connect",
"auth-code-flow",
"pkce-flow",
"msal",
"msal-js",
"azure-active-directory",
"microsoft-identity-platform"
],
"author": "Jimmy Leong (Github: appzmonster)",
"license": "MIT",
"bugs": {
"url": "https://github.com/appzmonster/msal-token-interceptor/issues"
},
"homepage": "https://github.com/appzmonster/msal-token-interceptor#readme",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"dependencies": {
"@appzmonster/fetch-interceptor": "^1.0.3",
"@azure/msal-browser": "^2.15.0"
}
}