-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 989 Bytes
/
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
{
"name": "@intility/msal-keyvault-cache",
"version": "1.0.2",
"description": "A cache for @azure/msal-node that uses Azure KeyVault as a store.",
"main": "dist/index.js",
"type": "commonjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"homepage": "https://github.com/Intility/msal-keyvault-cache",
"repository": {
"type": "git",
"url": "https://github.com/Intility/msal-keyvault-cache.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"msal",
"msal-node",
"keyvault",
"azure",
"intility"
],
"author": "Intility AS",
"license": "MIT",
"peerDependencies": {
"@azure/msal-node": "^1.0.0"
},
"dependencies": {
"@azure/identity": "^4.4.0",
"@azure/keyvault-secrets": "^4.3.0"
},
"devDependencies": {
"@azure/msal-node": "^1.7.0",
"typescript": "^4.6.2"
}
}