-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
88 lines (88 loc) · 2.94 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
{
"name": "@visa/charts",
"version": "8.0.1",
"description": "Collection of visa charts",
"license": "SEE LICENCE IN LICENSE",
"module": "dist/index.js",
"main": "dist/index.cjs.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"unpkg": "dist/charts.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"author": "Visa Data Experience Team",
"scripts": {
"audit": "yarn audit --json --level low > yarn-audit.json",
"yarn-install": "yarn",
"build": "stencil build",
"postbuild": "node ./scripts/fix-stencil-import-type-bug.js",
"watch": "chokidar -d=20000 \"**/*.tsx\" \"node_modules/@visa/visa-charts-utils/src\" \"node_modules/@visa/bar-chart/src\" \"node_modules/@visa/line-chart/src\" \"node_modules/@visa/pie-chart/src\" \"node_modules/@visa/scatter-plot/src\" \"node_modules/@visa/circle-packing/src\" \"node_modules/@visa/heat-map/src\" \"node_modules/@visa/clustered-bar-chart/src\" \"node_modules/@visa/stacked-bar-chart/src\" -c \"rm -rf dist && npm run build\"",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"test:es5-check": "es-check es5 'dist/index.cjs.js' 'dist/loader/index.cjs.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/visa/visa-chart-components.git",
"directory": "/packages/charts"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@visa/charts-types": "^0.6.5",
"d3-array": "^3.2.4",
"d3-collection": "^1.0.7",
"d3-color": "^3.1.0",
"d3-geo": "^1.12.1",
"d3-geo-projection": "2.9.0",
"d3-hierarchy": "^1.1.9",
"d3-scale": "^2.2.2",
"d3-selection": "^1.4.2",
"d3-shape": "^3.2.0",
"d3-time": "^1.1.0",
"d3-time-format": "^2.3.0",
"d3-transition": "1.1.3",
"topojson-client": "3.1.0",
"uuid": "8.3.2"
},
"devDependencies": {
"@visa/alluvial-diagram": "^4.0.1",
"@visa/bar-chart": "^7.0.1",
"@visa/circle-packing": "^8.0.1",
"@visa/clustered-bar-chart": "^7.0.1",
"@visa/dumbbell-plot": "^8.0.1",
"@visa/heat-map": "^7.0.1",
"@visa/keyboard-instructions": "^2.0.1",
"@visa/line-chart": "^7.0.1",
"@visa/parallel-plot": "^7.0.1",
"@visa/pie-chart": "^7.0.1",
"@visa/scatter-plot": "^8.0.1",
"@visa/stacked-bar-chart": "^7.0.1",
"@visa/visa-charts-data-table": "^3.0.1",
"@visa/visa-charts-utils": "^5.4.1",
"@visa/world-map": "^7.0.1",
"replace-in-file": "8.1.0"
},
"resolutions": {
"d3-color": "^3.1.0",
"d3-array": "^3.2.4"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}