-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
98 lines (98 loc) · 2.59 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
93
94
95
96
97
98
{
"name": "powerbi-visuals-cardbrowser",
"version": "2.0.1",
"description": "Card Browser, a custom visual for PowerBI",
"main": "src/index.js",
"scripts": {
"install-certificate": "node bin/openCert",
"install-private-submodule": "node bin/installPrivateSubmodules",
"start": "yarn run dev",
"tdd": "npm-run-all --parallel dev test:watch",
"dev": "node bin/startDev",
"package": "node bin/packageVisual",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "tslint --project ./tsconfig.json src/**/*.ts",
"clean": "rm -rf node_modules .tmp"
},
"config": {},
"keywords": [],
"author": "Microsoft",
"license": "MIT",
"privacyTerms": "https://privacy.microsoft.com/en-US/privacystatement/",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/PowerBI-visuals-CardBrowser"
},
"privateSubmodules": {
"@uncharted/cards": "0.13.9"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/jquery": "^3.3.29",
"@types/lodash-es": "^4.17.0",
"@types/node": "^9.4.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"chokidar": "^2.1.2",
"clean-css": "^4.1.9",
"connect": "^3.6.5",
"eslint": "^5.15.1",
"eslint-loader": "^2.1.2",
"fs-extra": "^7.0.0",
"handlebars": "^4.3.0",
"handlebars-loader": "^1.7.0",
"jest": "^24.8.0",
"jquery": "^3.5.0",
"json": "^9.0.6",
"memory-fs": "^0.4.1",
"mkdirp": "^0.5.1",
"mv": "^2.1.1",
"node-sass": "^4.7.2",
"node-zip": "^1.1.1",
"npm-run-all": "^4.1.5",
"onchange": "^6.0.0",
"serve-static": "^1.13.2",
"sinon": "^7.2.7",
"sinon-chai": "^3.3.0",
"targz": "^1.0.1",
"ts-jest": "^24.0.2",
"ts-loader": "^3.5.0",
"tslint": "^5.9.1",
"tslint-loader": "^3.5.3",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^2.7.2",
"upath": "^1.1.1",
"webpack": "^3.12.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.8.2",
"@uncharted/cards": "./lib/@uncharted/cards",
"lodash": "^4.17.19",
"lodash-es": "^4.17.14",
"moment": "^2.24.0"
},
"engines": {
"node": ">=8"
},
"jest": {
"transform": {
"^.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!lodash-es/.*)"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"testURL": "http://localhost/"
}
}