-
Notifications
You must be signed in to change notification settings - Fork 359
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.54 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.54 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
{
"name": "@microsoft/mgt-components",
"version": "3.0.1",
"description": "The Microsoft Graph Toolkit Components",
"keywords": [
"microsoft graph",
"web components"
],
"homepage": "https://github.com/microsoftgraph/microsoft-graph-toolkit",
"bugs": {
"url": "https://github.com/microsoftgraph/microsoft-graph-toolkit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoftgraph/microsoft-graph-toolkit"
},
"author": "Microsoft",
"license": "MIT",
"main": "./dist/es6/index.js",
"types": "./dist/es6/index.d.ts",
"module": "./dist/es6/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm-run-all clean build:compile",
"build:compile": "npm-run-all sass compile",
"build:watch": "npm-run-all -p sass:watch compile:watch",
"clean": "shx rm -rf ./dist && shx rm -rf ./tsconfig.tsbuildinfo && shx rm 'src/**/*-css.ts' || shx true",
"compile": "tsc -b",
"compile:watch": "tsc -w",
"lint": "eslint -c ../../.eslintrc.js 'src/**/*.ts'",
"postpack": "cpx *.tgz ../../artifacts",
"sass": "gulp sass --cwd .",
"sass:watch": "gulp watchSass --cwd ."
},
"dependencies": {
"@microsoft/mgt-element": "*",
"@microsoft/microsoft-graph-client": "3.0.2",
"@microsoft/microsoft-graph-types": "^2.0.0",
"@microsoft/microsoft-graph-types-beta": "^0.29.0-preview",
"@fluentui/web-components": "^2.5.12",
"@open-wc/scoped-elements": "2.2.0",
"office-ui-fabric-core": "^11.0.0"
},
"publishConfig": {
"directory": "dist"
}
}