-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.49 KB
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
{
"name": "m365-wrapper",
"version": "0.0.23",
"description": "Microsoft Graph API wrapper for Microsoft Office 365 functionality: support authentication, teams and much much more",
"main": "dist/index.js",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"prestart": "npm run build",
"build": "tsc",
"buildes6": "tsc -m es6 --outDir lib-esm",
"clean": "shx rm -rf _bundles lib lib-esm",
"build-webpack": "npm run clean && tsc && tsc -m es6 --outDir lib-esm && webpack",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/proge-software/m365-wrapper.git"
},
"keywords": [
"Graph",
"MSAL",
"Teams",
"Microsoft365"
],
"author": "Francesco Venturini",
"license": "MIT",
"bugs": {
"url": "https://github.com/proge-software/m365-wrapper/issues"
},
"homepage": "https://github.com/proge-software/m365-wrapper#readme",
"devDependencies": {
"@types/jest": "^28.1.1",
"jest": "^28.1.1",
"path": "^0.12.7",
"requirejs": "2.3.6",
"shx": "^0.3.4",
"terser-webpack-plugin": "^5.3.3",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.0",
"tsify": "^5.0.4",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "4.10.0"
},
"dependencies": {
"@azure/msal-browser": "^2.25.0",
"@microsoft/microsoft-graph-client": "^3.0.2",
"@microsoft/microsoft-graph-types": "^2.20.0",
"isomorphic-fetch": "^3.0.0"
}
}