This repository has been archived by the owner on Dec 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
49 lines (49 loc) · 1.47 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
{
"name": "powerbi-cli",
"version": "1.0.9",
"main": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"precontrib": "npm install -g typings typescript && npm install",
"contrib": "typings install && tsc"
},
"author": "PowerBI <[email protected]> (https://dev.powerbi.com)",
"license": "MIT",
"preferGlobal": true,
"bin": {
"powerbi": "./bin/cli",
"powerbi-clone-report": "./bin/cli-clone-report",
"powerbi-config": "./bin/cli-config",
"powerbi-create-embed-token": "./bin/cli-create-embed-token",
"powerbi-create-workspace": "./bin/cli-create-workspace",
"powerbi-delete-dataset": "./bin/cli-delete-dataset",
"powerbi-get-datasets": "./bin/cli-get-datasets",
"powerbi-get-reports": "./bin/cli-get-reports",
"powerbi-get-workspaces": "./bin/cli-get-workspaces",
"powerbi-import": "./bin/cli-import",
"powerbi-rebind-report": "./bin/cli-rebind-report",
"powerbi-update-connection": "./bin/cli-update-connection"
},
"dependencies": {
"colors": "^1.1.2",
"commander": "^2.9.0",
"lodash": "^4.11.1",
"ms-rest": "^1.12.0",
"powerbi-api": "^1.2"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/PowerBI-Cli.git"
},
"keywords": [
"microsoft",
"power",
"bi",
"cli"
],
"bugs": {
"url": "https://github.com/Microsoft/PowerBI-Cli/issues"
},
"homepage": "https://github.com/Microsoft/PowerBI-Cli#readme"
}