forked from OfficeDev/microsoft-teams-library-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 949 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
{
"name": "@microsoft/teams-js",
"author": "Microsoft Teams",
"version": "2.5.0",
"description": "Microsoft Client SDK for building app for Microsoft hosts",
"repository": {
"directory": "packages/teams-js",
"type": "git",
"url": "https://github.com/OfficeDev/microsoft-teams-library-js"
},
"main": "./dist/MicrosoftTeams.min.js",
"typings": "./dist/MicrosoftTeams.d.ts",
"scripts": {
"build": "yarn lint && webpack && yarn docs:validate",
"clean": "rimraf ./dist",
"docs": "yarn typedoc",
"docs:validate": "yarn typedoc --treatWarningsAsErrors --emit none",
"lint": "yarn eslint ./src ./test --max-warnings 0 --fix --ext .ts",
"prettier": "prettier --write '**/*.{ts,js,css,html}'",
"test": "jest"
},
"dependencies": {
"debug": "4.3.3"
},
"devDependencies": {
"@types/debug": "4.1.7"
},
"license": "MIT",
"files": [
"dist/**",
"LICENSE",
"README.md"
]
}