-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
74 lines (74 loc) · 1.95 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
{
"name": "gridviz",
"version": "3.0.18",
"description": "Visualization tool for gridded statistics",
"keywords": [
"statistics",
"grid",
"gridded",
"grids",
"gridded statistics",
"dataviz",
"csv",
"GIS",
"WebGL",
"d3",
"cartography",
"bertin",
"geospatial",
"mapping"
],
"homepage": "https://github.com/eurostat/gridviz",
"author": "Joseph Davies, Julien Gaffuri",
"license": "EUPL-1.2",
"repository": {
"type": "git",
"url": "git+https://github.com/eurostat/gridviz.git"
},
"bugs": {
"url": "https://github.com/eurostat/gridviz/issues",
"email": "Joseph.DAVIES@ext.ec.europa.eu"
},
"type": "module",
"main": "dist/gridviz.min.js",
"module": "dist/gridviz.min.js",
"exports": {
"umd": "./dist/gridviz.min.js",
"default": "./src/index.js"
},
"scripts": {
"start": "webpack --config webpack.config.dev.cjs",
"server": "webpack serve -c webpack.config.dev.cjs",
"doc": "jsdoc -c docs/jsdoc/jsdoc.conf.json",
"build-prod": "webpack --config webpack.config.prod.cjs",
"test": "jest",
"format": "prettier --write ."
},
"files": [
"dist/**/*.js",
"src/**/*.js"
],
"dependencies": {
"d3-array": "^3.2.4",
"d3-color": "^3.1.0",
"d3-fetch": "^3.0.1",
"d3-random": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"jsdoc": "^4.0.4"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"babel-loader": "^8.1.0",
"jshint": "^2.12.0",
"prettier": "^2.8.8",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-livereload-plugin": "^3.0.2"
},
"engines": {
"node": ">=14"
}
}