-
Notifications
You must be signed in to change notification settings - Fork 153
/
package.json
97 lines (97 loc) · 2.88 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "powerbi-visuals-tools",
"version": "5.6.0",
"description": "Command line tool for creating and publishing visuals for Power BI",
"main": "./bin/pbiviz.js",
"type": "module",
"scripts": {
"build": "tsc",
"pbiviz": "node ./bin/pbiviz.js",
"start": "npm run pbiviz start",
"test": "npm run build && npm run clean-tests && npm run lint && npm run jasmine",
"jasmine": "node spec/jasmine-runner.js",
"jasmine-inspect": "node --inspect spec/jasmine-runner.js",
"lint": "npx eslint .",
"clean-tests": "node spec/clean-tests.js",
"debug-tests": "npm run clean-tests && npm run lint && npm run jasmine-inspect"
},
"bin": {
"pbiviz": "./bin/pbiviz.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/PowerBI-visuals-tools.git"
},
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/PowerBI-visuals-tools/issues"
},
"homepage": "https://github.com/Microsoft/PowerBI-visuals-tools#readme",
"dependencies": {
"@typescript-eslint/parser": "^8.8.0",
"assert": "^2.1.0",
"async": "^3.2.6",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"compare-versions": "^6.1.1",
"console-browserify": "^1.2.0",
"constants-browserify": "^1.0.0",
"crypto-browserify": "^3.12.0",
"css-loader": "^7.1.2",
"domain-browser": "^5.7.0",
"events": "^3.3.0",
"extra-watch-webpack-plugin": "^1.0.3",
"fs-extra": "^11.2.0",
"https-browserify": "^1.0.0",
"inline-source-map": "^0.6.3",
"json-loader": "0.5.7",
"jszip": "^3.10.1",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"lodash.clonedeep": "4.5.0",
"lodash.defaults": "4.2.0",
"lodash.isequal": "4.5.0",
"lodash.ismatch": "^4.4.0",
"mini-css-extract-plugin": "^2.9.1",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"powerbi-visuals-webpack-plugin": "4.1.0",
"eslint-plugin-powerbi-visuals": "^1.0.0",
"process": "^0.11.10",
"punycode": "^2.3.1",
"querystring-es3": "^0.2.1",
"readable-stream": "^4.5.2",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string_decoder": "^1.3.0",
"terser-webpack-plugin": "^5.3.10",
"timers-browserify": "^2.0.12",
"ts-loader": "^9.5.1",
"tty-browserify": "^0.0.1",
"typescript": "^5.5.0",
"url": "^0.11.4",
"util": "^0.12.5",
"vm-browserify": "^1.1.2",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "4.10.2",
"webpack-dev-server": "^5.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.8.0",
"eslint": "^9.11.1",
"jasmine": "5.3.0",
"jasmine-spec-reporter": "7.0.0",
"semver": "7.6.3",
"tree-kill": "1.2.2",
"webpack-cli": "^5.1.4"
},
"optionalDependencies": {
"fsevents": "*"
},
"engines": {
"node": ">=18.0.0"
}
}