-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "population-cartogram",
"version": "1.0.0",
"description": "Population scaled cartogram - OWID",
"scripts": {
"clean": "rm -rf .parcel-cache && rm -rf dist",
"build": "npm run build:index",
"build:index": "parcel build index.html --dist-dir dist --public-url .",
"deploy": "npm run clean && npm run build && gh-pages -d dist",
"dev": "parcel index.html",
"pretty": "prettier --write \"./**/*.{js,jsx,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/owid/cartograms.git"
},
"keywords": [
"cartogram"
],
"dependencies": {
"d3": "^7.4.3",
"d3-array": "^3.1.6",
"d3-geo": "^3.0.1",
"d3-hexbin": "^0.2.2",
"prettier": "^2.7.1",
"topojson-client": "^3.1.0",
"topojson-server": "^3.0.1",
"topojson-simplify": "^3.0.3"
},
"author": "Adesh Nalpet Adimurthy",
"license": "ISC",
"bugs": {
"url": "https://github.com/owid/cartograms/issues"
},
"homepage": "https://github.com/owid/cartograms#readme",
"devDependencies": {
"gh-pages": "^2.2.0",
"parcel": "^2.4.1"
}
}