-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.36 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.36 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
{
"name": "powerbi-visuals-utils-chartutils",
"version": "8.2.0",
"description": "ChartUtils",
"main": "lib/index.js",
"module": "lib/index.js",
"jsnext:main": "lib/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/powerbi-visuals-utils-chartutils.git"
},
"keywords": [
"powerbi-visuals-utils"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/powerbi-visuals-utils-chartutils/issues"
},
"homepage": "https://github.com/Microsoft/powerbi-visuals-utils-chartutils#readme",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"build:map": "tsc --sourceMap",
"postbuild": "npm run lessc",
"test": "karma start",
"lint": "npx eslint",
"lintfix": "npx eslint --fix",
"lessc": "lessc src/styles/style.less lib/index.css"
},
"devDependencies": {
"@types/d3-array": "^3.2.2",
"@types/d3-axis": "^3.0.6",
"@types/d3-scale": "^4.0.9",
"@types/d3-selection": "^3.0.11",
"@types/d3-transition": "^3.0.9",
"@types/jasmine": "^5.1.13",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"coverage-istanbul-loader": "3.0.5",
"eslint": "^9.39.1",
"eslint-plugin-powerbi-visuals": "^1.1.0",
"jasmine": "5.6.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-sourcemap-loader": "^0.4.0",
"karma-typescript": "^5.5.4",
"karma-webpack": "5.0.1",
"less": "^4.4.2",
"lodash.union": "4.6.0",
"playwright-chromium": "^1.57.0",
"powerbi-visuals-api": "^5.11.0",
"powerbi-visuals-utils-colorutils": "^6.0.5",
"powerbi-visuals-utils-testutils": "^6.1.1",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.103.0"
},
"dependencies": {
"d3-array": "^3.2.4",
"d3-axis": "^3.0.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-transition": "^3.0.1",
"powerbi-visuals-utils-formattingutils": "^6.1.2",
"powerbi-visuals-utils-svgutils": "^6.0.4",
"powerbi-visuals-utils-typeutils": "^6.0.3",
"typescript-eslint": "^8.48.0"
},
"optionalDependencies": {
"fsevents": "2.3.3"
}
}