Skip to content

Commit 873345d

Browse files
committed
Add bower install support
1 parent 0b674d7 commit 873345d

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

bower.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "powerbi-client",
3+
"description": "",
4+
"main": "./dist/powerbi.js",
5+
"authors": [
6+
"Microsoft"
7+
],
8+
"license": "MIT",
9+
"moduleType": [],
10+
"homepage": "https://dev.powerbi.com",
11+
"private": false,
12+
"ignore": [
13+
"**/.*",
14+
"*/.js",
15+
"*/.md",
16+
"*/.nuspec",
17+
"demo",
18+
"node_modules",
19+
"bower_components",
20+
"src",
21+
"test",
22+
"tests",
23+
"tsconfig.json",
24+
"typings.json",
25+
"webpack.test.tsconfig.json"
26+
],
27+
"devDependencies": {
28+
"jquery": "~2.2.0"
29+
}
30+
}

demo/bower.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "powerbi-client-demo",
3+
"homepage": "https://github.com/Microsoft/PowerBI-JavaScript",
4+
"authors": [
5+
"Microsoft Power BI Team"
6+
],
7+
"description": "Demonstration of embedding powerbi using core library.",
8+
"main": "",
9+
"license": "MIT",
10+
"private": true,
11+
"ignore": [
12+
"**/.*",
13+
"node_modules",
14+
"bower_components",
15+
"test",
16+
"tests"
17+
],
18+
"dependencies": {
19+
"fetch": "^1.0.0",
20+
"es6-promise": "^3.2.2",
21+
"bootstrap": "^3.3.6",
22+
"jquery": "^3.1.0",
23+
"powerbi-client": "^2.2.1"
24+
},
25+
"devDependencies": {}
26+
}

0 commit comments

Comments
 (0)