forked from microsoft/MHA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.64 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.64 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "mha",
"version": "1.0.0",
"description": "Message Header Analyzer",
"engines": {
"node": ">=18.12.0",
"npm": ">=8.19.2"
},
"private": true,
"scripts": {
"watch": "webpack --watch --mode development",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"dev-server": "webpack serve --mode development",
"clean": "node tasks/clean.js",
"start": "office-addin-debugging start ManifestDebugLocal.xml",
"start:server": "office-addin-debugging start manifestDebugServer.xml",
"stop": "office-addin-debugging stop ManifestDebugLocal.xml && office-addin-debugging stop manifestDebugServer.xml",
"validate": "office-addin-manifest validate Manifest.xml",
"test": "grunt test"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/MHA.git"
},
"author": "Stephen Griffin",
"license": "MIT",
"config": {
"app_to_debug": "outlook",
"app_type_to_debug": "desktop",
"dev_server_port": 44336
},
"bugs": {
"url": "https://github.com/microsoft/MHA/issues"
},
"homepage": "https://github.com/microsoft/MHA#readme",
"devDependencies": {
"@types/jquery": "^3.5.30",
"@types/office-js": "^1.0.395",
"@types/qunit": "^2.19.10",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-plugin-node": "^11.1.0",
"exports-loader": "^5.0.0",
"file-loader": "^6.2.0",
"filemanager-webpack-plugin": "^8.0.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"grunt": "^1.6.1",
"grunt-contrib-connect": "^4.0.0",
"grunt-contrib-qunit": "^9.1.1",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"office-addin-debugging": "^5.1.2",
"office-addin-dev-certs": "^1.12.0",
"office-addin-dev-settings": "^2.2.1",
"office-addin-manifest": "^1.12.7",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@microsoft/applicationinsights-web": "^3.2.2",
"@microsoft/office-js": "^1.1.93",
"codepage": "^1.15.0",
"dayjs": "^1.11.11",
"framework7": "^1.7.1",
"framework7-icons": "^5.0.5",
"jquery": "^3.7.1",
"jwt-decode": "^4.0.0",
"office-ui-fabric-js": "^1.5.0",
"promise-polyfill": "8.3.0",
"qunit": "^2.21.0",
"stacktrace-js": "^2.0.2"
},
"-vs-binding": {
"BeforeBuild": [
"build:dev"
],
"Clean": [
"clean"
]
}
}