This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
forked from microsoft/PowerBI-visuals-StrippetsBrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.48 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "strippetbrowser",
"version": "0.2.14",
"description": "Strippets Browser PowerBI custom visual",
"main": "src/index.js",
"scripts": {
"preinstall:prereq": "npm install tar.gz mv --save-dev",
"preinstall:submodules": "node bin/downloadPrivateSubmodules",
"preinstall:dependencies": "node bin/installSubmoduleDeps",
"preinstall": "npm run preinstall:prereq && npm run preinstall:submodules && npm run preinstall:dependencies",
"install-certificate": "node bin/openCert",
"start": "npm run dev",
"tdd": "npm-run-all --parallel dev test:tdd",
"dev": "node bin/startDev",
"package": "node bin/packageVisual",
"test": "karma start",
"test:tdd": "karma start --color --tdd",
"lint": "tslint src/**/*.ts",
"clean": "rm -rf node_modules .tmp"
},
"config": {},
"keywords": [],
"author": "Uncharted Software Inc.",
"license": "https://raw.githubusercontent.com/Microsoft/PowerBI-visuals-StrippetsBrowser/master/LICENSE",
"privacyTerms": "https://privacy.microsoft.com/en-US/privacystatement/",
"privateSubmodules": {
"@uncharted/strippets.common": "0.2.6",
"@uncharted/strippets": "0.4.40",
"@uncharted/thumbnails": "0.4.33"
},
"devDependencies": {
"@types/bluebird": "^3.0.35",
"@types/jquery": "^2.0.33",
"@types/lodash": "^4.14.37",
"@types/mocha": "^2.2.32",
"@types/requirejs": "^2.1.28",
"@types/sinon": "^1.16.31",
"@types/sinon-chai": "^2.7.27",
"chai": "^3.5.0",
"chokidar": "^1.6.1",
"clean-css": "^4.0.3",
"connect": "^3.5.0",
"handlebars-loader": "^1.4.0",
"imports-loader": "^0.6.5",
"json": "^9.0.4",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon-chai": "^1.3.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"memory-fs": "^0.3.0",
"mkdirp": "^0.5.1",
"mocha": "^3.1.2",
"mv": "^2.1.1",
"node-sass": "^3.11.2",
"node-zip": "^1.1.1",
"npm-run-all": "^3.1.0",
"onchange": "^3.0.2",
"powerbi-visuals": "^0.5.9",
"serve-static": "^1.11.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"tar.gz": "^1.0.5",
"ts-loader": "^0.8.2",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.5",
"typescript": "^2.0.3",
"webpack": "^1.13.3"
},
"dependencies": {
"bluebird": "^3.4.6",
"handlebars": "^4.0.5",
"jquery": "^3.1.1",
"lodash": "^4.11.2",
"moment": "^2.13.0"
}
}