-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 861 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 861 Bytes
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
{
"name": "pcf-dev-proxy",
"version": "3.2.3",
"description": "HTTPS MITM proxy that intercepts deployed PCF bundle requests and serves local files with hot module reload.",
"main": "dist/proxy.js",
"bin": {
"pcf-dev-proxy": "./dist/proxy.js"
},
"scripts": {
"build": "tsc",
"test": "npm run build && node --test test/*.test.js",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"pcf",
"powerapps",
"component-framework",
"dynamics365",
"proxy",
"mitm",
"dev-tools"
],
"repository": {
"type": "git",
"url": "https://github.com/Kristoffer88/pcf-dev-proxy.git"
},
"author": "Kristoffer Rasmussen",
"dependencies": {
"mockttp": "^4.2.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^20.10.4",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
},
"license": "MIT"
}