forked from OfficeDev/microsoft-teams-library-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.6 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@microsoft/teams-js",
"author": "Microsoft Teams",
"version": "1.10.0",
"description": "Microsoft Client SDK for building app for Microsoft teams",
"main": "./dist/MicrosoftTeams.min.js",
"typings": "./dist/MicrosoftTeams.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/OfficeDev/microsoft-teams-library-js"
},
"scripts": {
"build": "yarn lint && webpack",
"lint": "eslint ./src/**/*.ts",
"doctor": "yarn lint --fix",
"prettier": "prettier --write '**/*.{ts,js,css,html}'",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.5",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"azure-keyvault": "^3.0.4",
"del": "2.2.2",
"deploy-azure-cdn": "^2.1.0",
"dts-builder": "^1.1.6",
"dts-bundle": "^0.7.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"fs-jetpack": "^2.2.2",
"jest": "^23.6.0",
"merge2": "1.0.2",
"prettier": "^1.18.2",
"ts-jest": "^23.10.4",
"ts-loader": "^5.2.1",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.5.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"yargs": "^8.0.1"
},
"files": [
"dist/**",
"dts/**",
"README.md",
"LICENSE"
],
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}