-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 979 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": "mgwdev-m365-helpers",
"version": "0.2.8",
"description": "Helper library to communicate with M365 resources",
"main": "lib-commonjs/index.js",
"module": "lib/index.js",
"scripts": {
"test": "test",
"build": "tsc && tsc --outDir lib-commonjs -module commonjs"
},
"keywords": [
"SharePoint",
"MSGraph"
],
"author": "m.g.wojciechowski@gmail.com",
"license": "MIT",
"devDependencies": {
"@azure/msal-node": "^1.10.0",
"@microsoft/sp-http": "^1.15.0",
"@types/chai": "^4.3.1",
"@types/jest": "^28.1.3",
"chai": "^4.3.6",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"msal": "^1.4.16",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"repository": {
"type": "git",
"url": "https://github.com/mgwojciech/mgwdev-m365-helpers.git"
},
"dependencies": {
"@azure/msal-browser": "3.6.0"
}
}