forked from microsoft/PowerBI-visuals-tools
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.66 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
50
51
52
53
54
55
56
57
58
{
"name": "@visualbi/powerbi-visuals-tools",
"version": "2.3.2-rc3",
"description": "Command line tool for creating and publishing visuals for Power BI",
"main": "./lib/VisualPackage.js",
"scripts": {
"start": "node ./bin/pbiviz.js",
"test": "npm run clean-tests && npm run eslint && npm run jasmine",
"jasmine": "node spec/jasmine-runner.js",
"jasmine-inspect": "node --inspect spec/jasmine-runner.js",
"eslint": "eslint bin lib spec",
"clean-tests": "node spec/clean-tests.js",
"debug-tests": "npm run clean-tests && npm run eslint && npm run jasmine-inspect"
},
"bin": {
"pbiviz": "./bin/pbiviz.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shoaibmerchant/PowerBI-visuals-tools.git"
},
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/shoaibmerchant/PowerBI-visuals-tools/issues"
},
"homepage": "https://github.com/shoaibmerchant/PowerBI-visuals-tools#readme",
"dependencies": {
"chalk": "1.1.3",
"commander": "2.9.0",
"connect": "^3.6.6",
"fs-extra": "0.28.0",
"jsonschema": "1.1.0",
"jszip": "3.0.0",
"less": "^3.8.1",
"lodash": "^4.17.11",
"powerbi-visuals-utils-dataviewutils": "1.2.0",
"serve-static": "^1.13.2",
"source-map-concat": "1.0.1",
"terser": "^3.17.0",
"typescript": "2.3.3",
"uglify-js": "2.6.2",
"uuid": "3.0.0"
},
"devDependencies": {
"async": "2.0.1",
"eslint": "5.6.1",
"jasmine": "2.8.0",
"jasmine-spec-reporter": "2.5.0",
"ps-tree": "1.2.0",
"request": "2.83.0",
"tree-kill": "^1.1.0",
"wrench": "1.5.9"
},
"engines": {
"node": "^6.0.0"
}
}