-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "d3-composite-projections",
"version": "1.4.0",
"description": "Like the AlbersUsa projection, adds several d3 projections to show the countries that are far from the mainland close to it.",
"homepage": "http://geoexamples.com/d3-composite-projections/",
"license": "BSD-3-Clause",
"author": {
"name": "Roger Veciana i Rovira",
"url": "http://geoexamples.com"
},
"main": "d3-composite-projections.js",
"unpkg": "d3-composite-projections.min.js",
"module": "./index.js",
"jsnext:main": "index",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/rveciana/d3-composite-projections.git"
},
"scripts": {
"build": "rollup -c",
"pretest": "npm run build",
"test": "mkdir -p test/output && tape 'test/*-test.js' && eslint index.js src",
"prepublish": "npm run test",
"postpublish": "git push && git push --tags"
},
"dependencies": {
"d3-geo": "^3.0.1",
"d3-path": "^3.0.1"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.1.0",
"canvas": "2.10.2",
"eslint": "^8.29.0",
"pixelmatch": "^5.3.0",
"pngjs": "^6.0.0",
"rollup": "^3.5.1",
"tape": "^5.6.1",
"topojson-client": "^3.1.0"
}
}