-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.84 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
{
"name": "gridviz-eurostat",
"version": "2.0.2",
"description": "Utilities for using GridViz with Eurostat data, on Europe",
"keywords": [],
"homepage": "https://github.com/eurostat/gridviz-eurostat",
"author": "Joseph Davies, Julien Gaffuri",
"license": "EUPL-1.2",
"repository": {
"type": "git",
"url": "https://github.com/eurostat/gridviz-eurostat.git"
},
"bugs": {
"url": "https://github.com/eurostat/gridviz-eurostat/issues",
"email": "[email protected]"
},
"type": "module",
"main": "dist/gridviz-eurostat.min.js",
"module": "dist/gridviz-eurostat.min.js",
"exports": {
"umd": "./dist/gridviz-eurostat.min.js",
"default": "./src/index.js"
},
"scripts": {
"start": "export NODE_OPTIONS=--openssl-legacy-provider && webpack --config webpack.config.dev.cjs",
"start-dev": "webpack --config webpack.config.dev.cjs",
"server": "webpack serve -c webpack.config.dev.js --static ./",
"doc": "./node_modules/.bin/jsdoc src/ src/dataset src/legend src/style -d docs/jsdoc",
"bp": "webpack --config webpack.config.prod.cjs",
"test": "jest"
},
"files": [
"dist/**/*.js",
"src/**/*.js"
],
"dependencies": {
"d3-geo": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.9.0",
"@babel/runtime": "^7.12.1",
"babel-loader": "^8.1.0",
"jest": "^26.6.1",
"jshint": "^2.12.0",
"prettier": "2.8.8",
"puppeteer": "^9.1.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1",
"webpack-livereload-plugin": "^3.0.2"
},
"engines": {
"node": ">=14"
}
}