-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
92 lines (92 loc) · 2.78 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "strippetbrowser",
"version": "1.0.3",
"description": "Strippets Browser PowerBI custom visual",
"main": "src/index.js",
"scripts": {
"preinstall:prereq": "npm install targz mv --save-dev",
"preinstall:submodules": "node bin/downloadPrivateSubmodules",
"preinstall:dependencies": "node bin/installSubmoduleDeps",
"postinstall": "npm run install-private-submodule && node bin/createSymLink",
"install-certificate": "node bin/openCert",
"install-private-submodule": "node bin/installPrivateSubmodules",
"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 --project ./tsconfig.json src/**/*.ts",
"clean": "rm -rf node_modules .tmp"
},
"config": {},
"keywords": [],
"author": "Uncharted Software Inc.",
"license": "SEE LICENSE IN LICENSE",
"privacyTerms": "https://privacy.microsoft.com/en-US/privacystatement/",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/PowerBI-visuals-StrippetsBrowser"
},
"privateSubmodules": {
"@uncharted/strippets.common": "0.2.7",
"@uncharted/strippets": "0.4.52",
"@uncharted/thumbnails": "1.0.14"
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/jquery": "^3.3.29",
"@types/lodash": "^4.14.133",
"@types/mocha": "^5.2.7",
"@types/requirejs": "^2.1.31",
"@types/sinon": "^7.0.12",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.2.0",
"chokidar": "^3.0.1",
"clean-css": "^4.2.1",
"connect": "^3.7.0",
"fs-extra": "^8.0.1",
"handlebars": "^4.1.2",
"handlebars-loader": "^1.7.1",
"imports-loader": "^0.8.0",
"jquery": "^3.4.1",
"json": "^9.0.6",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mediator-js": "^0.9.9",
"memory-fs": "^0.4.1",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"mv": "^2.1.1",
"node-sass": "^4.12.0",
"node-zip": "^1.1.1",
"npm-run-all": "^4.1.5",
"onchange": "^6.0.0",
"powerbi-visuals": "^0.6.0",
"serve-static": "^1.14.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"targz": "^1.0.1",
"ts-loader": "^2.0.3",
"tslint": "^5.17.0",
"tslint-loader": "^3.5.4",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^2.9.2",
"webpack": "^1.15.0"
},
"dependencies": {
"bluebird": "^3.5.5",
"font-awesome": "^4.7.0",
"moment": "^2.20.1",
"underscore": "^1.9.1",
"velocity-animate": "^1.5.2"
},
"engines": {
"node": ">=8"
}
}