-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.89 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.89 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
{
"name": "@image-charts/pcf-doughnut",
"version": "1.0.1",
"description": "Image-Charts Doughnut Chart Generator for Microsoft Power Apps (PCF Component)",
"main": "solution/ImageChartsDoughnut.zip",
"types": "src/DoughnutChartGenerator/index.d.ts",
"scripts": {
"build": "npm run build:pcf && npm run build:solution",
"build:pcf": "pcf-scripts build",
"build:solution": "cd Solutions && dotnet build --configuration Release",
"start": "pcf-scripts start watch",
"test": "jest --coverage",
"test:integration": "jest --testPathPattern=integration",
"lint": "eslint src/**/*.ts",
"clean": "rimraf out Solutions/bin Solutions/obj",
"refreshTypes": "pcf-scripts refreshTypes",
"postinstall": "node scripts/postinstall.js"
},
"keywords": [
"pcf",
"powerapps",
"power-apps",
"power-platform",
"image-charts",
"imagecharts",
"doughnut-chart",
"doughnut",
"donut",
"chart",
"dataverse",
"dynamics365",
"canvas-app",
"component-framework"
],
"author": "Image-Charts <support@image-charts.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/image-charts/pcf-doughnut.git"
},
"bugs": {
"url": "https://github.com/image-charts/pcf-doughnut/issues"
},
"homepage": "https://documentation.image-charts.com/integrations/power-apps/",
"files": [
"solution/*.zip",
"src/",
"scripts/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {
"crypto-js": "^4.2.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/node": "^20.10.0",
"@types/powerapps-component-framework": "^1.3.4",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"pcf-scripts": "^1.31.4",
"rimraf": "^5.0.5",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}