forked from microsoft/PowerBI-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.28 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.28 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
{
"name": "powerbi-client",
"version": "2.13.2",
"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",
"typings": "dist/powerbi-client.d.ts",
"files": [
"dist"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "gulp build",
"start": "http-server ./demo",
"prestart": "cd demo && npm install",
"pretest": "typings install && gulp build",
"test": "gulp test",
"gulp": "gulp",
"typings": "typings"
},
"keywords": [
"microsoft",
"powerbi",
"embedded",
"visuals"
],
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/PowerBI-JavaScript.git"
},
"author": "Microsoft",
"license": "MIT",
"devDependencies": {
"del": "^2.2.2",
"es6-promise": "^3.2.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.0",
"gulp-flatten": "^0.2.0",
"gulp-gh-pages": "^0.5.4",
"gulp-header": "^1.8.7",
"gulp-help-four": "^0.2.3",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "^1.6.0",
"gulp-tslint": "^4.3.4",
"gulp-typedoc": "^2.0.0",
"gulp-typescript": "^2.12.1",
"gulp-uglify": "^1.5.1",
"gulp4-run-sequence": "^1.0.0",
"http-server": "^0.11.1",
"ignore-loader": "^0.1.1",
"jasmine-core": "^2.4.1",
"jquery": "^3.3.1",
"json-loader": "^0.5.4",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-firefox-launcher": "^1.2.0",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "0.0.32",
"moment": "^2.14.1",
"phantomjs-prebuilt": "^2.1.3",
"ts-loader": "^0.8.1",
"tslint": "^3.6.0",
"typedoc": "^0.15.0",
"typescript": "^1.8.10",
"typings": "^1.3.2",
"webpack": "^1.12.14",
"webpack-stream": "^3.1.0",
"yargs": "^4.4.0"
},
"dependencies": {
"http-post-message": "^0.2",
"powerbi-models": "^1.4",
"powerbi-router": "^0.1",
"window-post-message-proxy": "^0.2"
},
"publishConfig": {
"tag": "beta"
}
}