-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.22 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
{
"name": "COVID-19-map",
"version": "2.0.0",
"description": "[COVID-19 chart and map](https://kriestof.github.io/COVID-19-chart/). Check how COVID-19 disease develops worldwide.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:snowpack": "snowpack --include \"src/**/*.js\" --optimize --dest dist/web_modules",
"build:rollup": "rollup src/index.js --file dist/bundle.js --format es",
"build:rollup_nomodule": "rollup -c rollup_nomodule.config.js",
"build": "npm run build:snowpack && npm run build:rollup && npm run build:rollup_nomodule",
"postinstall": "snowpack --include \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/kriestof/COVID-19-chart.git"
},
"keywords": [],
"author": "Krzysztof Piwoński",
"private": true,
"license": "GPLv3",
"bugs": {
"url": "https://github.com/kriestof/COVID-19-chart/issues"
},
"homepage": "https://github.com/kriestof/COVID-19-chart#readme",
"devDependencies": {
"rollup": "^2.7.5",
"snowpack": "^1.7.1"
},
"dependencies": {
"d3": "^5.16.0",
"d3-geo-projection": "^2.9.0",
"mathjs": "^6.6.4",
"mithril": "^2.0.4",
"topojson-client": "^3.1.0"
}
}