-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.48 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.48 KB
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
99
100
101
{
"name": "@smartlabbr/smartlab-charts",
"description": "Charts generators/configurators used in smartlabbr.org",
"author": "MPT/SPAI",
"version": "0.6.2",
"private": false,
"scripts": {
"test": "jest",
"lint": "eslint --output-file=./lint/report.json --format=json --config=./lint/.eslintrc.js \"**/*.js\""
},
"engines": {
"node": ">=12.11",
"npm": ">=6.11"
},
"jest": {
"testResultsProcessor": "jest-sonar-reporter",
"coverageReporters": [
"text",
"cobertura",
"lcov"
],
"reporters": [
"default",
"jest-junit"
],
"collectCoverage": true,
"coverageDirectory": "test/coverage",
"collectCoverageFrom": [
"**/*.{js}"
],
"moduleFileExtensions": [
"js"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"\\.(yaml)$": "<rootDir>/test/__mock__/yamlMock.js"
},
"snapshotSerializers": []
},
"jestSonar": {
"reportPath": "test",
"reportFile": "report.xml"
},
"jest-junit": {
"outputDirectory": "./test/coverage/junit/",
"outputName": "junit.xml",
"usePathForSuiteName": "true"
},
"dependencies": {
"d3": "5.7.0",
"d3-sankey": "0.12.1",
"d3-scale-chromatic": "1.3.3",
"d3plus": "2.0.0-alpha.17",
"d3v4-bullet": "1.0.6",
"es6-promise": "4.2.4",
"fs": "0.0.1-security",
"leaflet": "1.3.4",
"leaflet-curve": "1.0.0",
"leaflet-easyprint": "2.1.9",
"leaflet.heat": "0.2.0",
"leaflet.markercluster": "1.4.0",
"topojson": "3.0.2"
},
"devDependencies": {
"autoprefixer": "9.1.5",
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"jest": "^23.6.0",
"jest-junit": "8.0.0",
"jest-sonar-reporter": "^2.0.0",
"source-map-loader": "0.2.4",
"ts-loader": "6.2.0",
"typescript": "3.6.3",
"webpack": "4.41.0",
"webpack-cli": "3.3.9"
},
"main": "chartBuilderService.js",
"repository": {
"type": "git",
"url": "git+https://github.com/smartlab-br/smartlab-charts.git"
},
"keywords": [
"smartlab",
"charts",
"d3",
"d3plus",
"leaflet"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/smartlab-br/smartlab-charts/issues"
},
"homepage": "https://github.com/smartlab-br/smartlab-charts#readme"
}