-
Notifications
You must be signed in to change notification settings - Fork 478
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.54 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.54 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
82
83
84
85
86
87
88
89
90
91
{
"name": "powerbi-client",
"version": "2.23.1",
"description": "JavaScript library for embedding Power BI into your apps. Provides service which makes it easy to embed different types of components and an object model which allows easy interaction with these components such as changing pages, applying filters, and responding to data selection.",
"main": "dist/powerbi.js",
"types": "dist/powerbi-client.d.ts",
"files": [
"dist"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "gulp build",
"test": "gulp test",
"gulp": "gulp",
"tests": "npm test -- --chrome --watch"
},
"keywords": [
"microsoft",
"powerbi",
"embedded",
"visuals"
],
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/PowerBI-JavaScript.git"
},
"author": "Microsoft",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^3.5.10",
"@types/jquery": "^3.3.34",
"@types/jsen": "0.0.19",
"@types/karma-jasmine": "^3.1.0",
"@types/node": "^14.14.7",
"@types/npm": "^2.0.31",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"del": "^2.2.2",
"es6-promise": "^3.2.1",
"eslint": "^7.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.7",
"eslint-plugin-prefer-arrow": "^1.2.2",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-flatten": "^0.4.0",
"gulp-prepend": "^0.3.0",
"gulp-help-four": "^0.2.3",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-typedoc": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-watch": "^5.0.1",
"gulp4-run-sequence": "^1.0.0",
"http-server": "^14.1.1",
"ignore-loader": "^0.1.1",
"jasmine-core": "3.10.1",
"jquery": "^3.3.1",
"json-loader": "^0.5.4",
"karma": "^6.3.5",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.2.0",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"karma-junit-reporter": "^2.0.1",
"karma-spec-reporter": "0.0.32",
"ts-loader": "^6.2.2",
"typedoc": "^0.23.23",
"typescript": "~4.6.0",
"webpack": "^5.75.0",
"webpack-stream": "^7.0.0",
"yargs": "^16.1.0"
},
"dependencies": {
"http-post-message": "^0.2",
"powerbi-models": "^1.14.0",
"powerbi-router": "^0.1",
"window-post-message-proxy": "^0.2.7"
},
"publishConfig": {
"tag": "beta"
},
"overrides": {
"glob-parent": "^6.0.2",
"micromatch": "^4.0.5",
"braces": "3.0.3",
"ws": "8.17.1"
}
}