-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.38 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
{
"name": "visual",
"scripts": {
"pbiviz": "pbiviz",
"start": "pbiviz start",
"package": "pbiviz package",
"package-standard": "node bin/package-custom --mode standard",
"package-standalone": "node bin/package-custom --mode standalone",
"eslint": "npx eslint .",
"prettier-check": "prettier --config .prettierrc {src,spec,style}/**/{*.ts*,*.css,*.less} --check",
"prettier-format": "prettier --config .prettierrc {src,spec,style}/**/{*.ts*,*.css,*.less} --write",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:integration": "playwright test --config=test-integration/playwright.config.ts",
"test:all": "npm run test && npm run test:integration && npm run docs:check",
"cert-check": "npm run package && npm run test:integration",
"docs:generate": "tsx scripts/generate-sanitization-docs.ts",
"docs:check": "tsx scripts/generate-sanitization-docs.ts --check",
"uat:generate": "tsx scripts/generate-uat-corpus.ts"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/d3": "^5.7.2",
"@types/d3-selection": "^3.0.5",
"@types/dompurify": "^3.0.5",
"@types/jsdom": "^27.0.0",
"@types/node": "^20.19.28",
"@types/overlayscrollbars": "^1.12.0",
"@types/pretty": "^2.0.0",
"@vitest/ui": "^4.1.8",
"d3-selection": "^3.0.0",
"dompurify": "^3.4.2",
"eslint": "^10.0.0",
"eslint-plugin-powerbi-visuals": "^1.1.1",
"fs": "^0.0.1-security",
"jsdom": "^27.4.0",
"lodash": "^4.17.21",
"marked": "^15.0.7",
"overlayscrollbars": "^1.13.3",
"postcss": "^8.5.8",
"postcss-value-parser": "^4.2.0",
"powerbi-visuals-api": "~5.11.0",
"powerbi-visuals-tools": "^7.0.3",
"powerbi-visuals-utils-dataviewutils": "^6.0.3",
"powerbi-visuals-utils-formattingmodel": "^6.0.1",
"powerbi-visuals-utils-formattingutils": "^6.0.1",
"powerbi-visuals-utils-interactivityutils": "^6.0.2",
"prettier": "^3.8.3",
"pretty": "^2.0.0",
"process": "^0.11.10",
"ts-loader": "6.1.0",
"tsx": "^4.21.0",
"typescript": "^5.4.3",
"vitest": "^4.1.8",
"w3-css": "^4.1.0"
}
}