-
Notifications
You must be signed in to change notification settings - Fork 361
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "@microsoft/mgt-spfx-utils",
"version": "4.6.1",
"description": "Helper utilities for loading MGT based libraries and web parts in a SPFx context",
"main": "./dist/es6/index.js",
"types": "./dist/es6/index.d.ts",
"module": "./dist/es6/index.js",
"files": [
"dist",
"src"
],
"keywords": [
"microsoft graph",
"microsoft graph toolkit",
"sharepoint framework",
"sharepoint"
],
"scripts": {
"build": "npm-run-all clean build:compile",
"build:compile": "npm-run-all compile",
"build:watch": "npm-run-all compile:watch",
"clean": "shx rm -rf ./dist && shx rm -rf ./tsconfig.tsbuildinfo",
"compile": "tsc -b",
"compile:watch": "tsc -w",
"lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"",
"postpack": "cpx *.tgz ../../artifacts"
},
"sideEffects": false,
"homepage": "https://github.com/microsoftgraph/microsoft-graph-toolkit",
"bugs": {
"url": "https://github.com/microsoftgraph/microsoft-graph-toolkit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoftgraph/microsoft-graph-toolkit.git"
},
"author": "Microsoft",
"license": "MIT",
"dependencies": {
"@microsoft/mgt-components": "*",
"@types/react": "17.0.45",
"react": "17.0.1"
},
"publishConfig": {
"access": "public"
}
}