-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.92 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
{
"name": "powerbi-report-authoring",
"version": "3.0.0",
"description": "A library for authoring Power BI reports while embedded into your apps. Provides service which makes it easy to change report and visual elements in session. It gives APIs such as creating visual, changing visual properties, etc ...",
"main": "dist/powerbi-report-authoring.js",
"scripts": {
"build": "gulp build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/powerbi-report-authoring.git"
},
"keywords": [
"Microsoft",
"PowerBI",
"Embedded",
"Visuals"
],
"author": "Microsoft Power BI",
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@types/eslint": "^8.56.12",
"@types/eslint-scope": "^8.3.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"del": "^2.2.1",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.0",
"gulp-eslint-new": "^2.4.0",
"gulp-flatten": "^0.4.0",
"gulp-header": "^2.0.7",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"readable-stream": "^3.0.2",
"run-sequence": "^2.2.1",
"ts-jest": "^29.3.4",
"ts-loader": "^6.0.0",
"typescript": "^4.3.6",
"uglify-save-license": "^0.4.1",
"webpack": "^5.71.0",
"webpack-stream": "^7.0.0"
},
"dependencies": {
"http-post-message": "^0.2",
"powerbi-client": "^2.13",
"powerbi-models": "^2.0.1"
},
"publishConfig": {
"tag": "beta"
},
"typings": "dist/powerbi-report-authoring.d.ts",
"overrides": {
"@types/babel__traverse": "7.20.6"
}
}