forked from microsoft/powerbi-visuals-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 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
{
"name": "powerbi-visuals-webpack-plugin",
"version": "4.0.2",
"description": "PowerBI Custom Visuals webpack plugin",
"main": "src/index.js",
"keywords": [
"custom",
"visuals",
"powerbi",
"visualization",
"analytics"
],
"author": "Microsoft",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/powerbi-visuals-webpack-plugin.git"
},
"scripts": {
"test": "mocha test/*.test.js",
"pretty": "prettier --loglevel warn --write \"*.js\"",
"lint": "eslint ./src",
"lint:fix": "eslint --fix --ext .js,.ts ./src"
},
"dependencies": {
"ajv": "6.12.3",
"chalk": "^4.1.2",
"compare-versions": "^3.6.0",
"fs-extra": "9.0.1",
"jszip": "^3.10.1",
"lodash.clonedeep": "4.5.0",
"webpack-sources": "^3.2.3"
},
"devDependencies": {
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"powerbi-visuals-api": "^5.4.0",
"prettier": "^2.8.8"
},
"engines": {
"node": ">=12.0.0"
}
}