forked from mkholt/pcf-reloader-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.76 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
63
64
65
66
67
68
69
{
"name": "pcf-reloader-transformer",
"version": "1.2.0",
"description": "Automatic refreshing of PCF components when embedded on a model-driven App in Dynamics365",
"main": "dist/index.js",
"scripts": {
"presample": "npm run build",
"sample": "tsc -p samples/tsconfig.json",
"build": "tsc -p tsconfig.json",
"test": "jest",
"lint": "eslint src/ tests/",
"clean": "rimraf dist",
"prepare": "npm run clean && npm run build"
},
"files": [
"dist"
],
"keywords": [
"typescript",
"ts",
"transformer",
"pcf",
"reloader",
"powerapps",
"microsoft",
"dynamics",
"dynamics365",
"component",
"d365"
],
"author": "mkholt <github@t-hawk.com>",
"repository": {
"type": "git",
"url": "https://github.com/mkholt/pcf-reloader-transformer.git"
},
"license": "MIT",
"devDependencies": {
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.5",
"@types/powerapps-component-framework": "^1.3.3",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.3.1",
"jest-mock-extended": "^2.0.4",
"mock-socket": "^9.1.2",
"pcf-start": "^1.11.8",
"rimraf": "^3.0.2",
"socket.io": "^4.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"wait-for-expect": "^3.0.2"
},
"dependencies": {
"socket.io-client": "^2.4.0",
"ts-patch": "^1.4.5"
},
"peerDependencies": {
"typescript": ">= 4.0",
"pcf-start": "~1"
}
}