Skip to content

Commit c44e495

Browse files
committed
fix: Add libs world-atlas and topojson-client
1 parent b6e44b7 commit c44e495

File tree

14 files changed

+922
-0
lines changed

14 files changed

+922
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright 2012-2019 Michael Bostock
2+
3+
Permission to use, copy, modify, and/or distribute this software for any purpose
4+
with or without fee is hereby granted, provided that the above copyright notice
5+
and this permission notice appear in all copies.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
8+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
9+
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
10+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
11+
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
12+
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
13+
THIS SOFTWARE.

content/libraries/topojson-client/3.1.0/README.md

Lines changed: 242 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"name": "topojson-client",
3+
"version": "3.1.0",
4+
"description": "Manipulate TopoJSON and convert it to GeoJSON.",
5+
"keywords": [
6+
"topojson",
7+
"topology",
8+
"geojson"
9+
],
10+
"homepage": "https://github.com/topojson/topojson-client",
11+
"license": "ISC",
12+
"author": {
13+
"name": "Mike Bostock",
14+
"url": "https://bost.ocks.org/mike"
15+
},
16+
"main": "dist/topojson-client.js",
17+
"unpkg": "dist/topojson-client.min.js",
18+
"jsdelivr": "dist/topojson-client.min.js",
19+
"module": "src/index.js",
20+
"repository": {
21+
"type": "git",
22+
"url": "https://github.com/topojson/topojson-client.git"
23+
},
24+
"bin": {
25+
"topo2geo": "bin/topo2geo",
26+
"topomerge": "bin/topomerge",
27+
"topoquantize": "bin/topoquantize"
28+
},
29+
"files": [
30+
"bin/topo*",
31+
"dist/**/*.js",
32+
"src/**/*.js"
33+
],
34+
"scripts": {
35+
"pretest": "rollup -c",
36+
"test": "tape 'test/**/*-test.js' && eslint src test",
37+
"prepublishOnly": "rm -rf dist && yarn test",
38+
"postpublish": "git push && git push --tags && zip -j dist/${npm_package_name}.zip -- LICENSE README.md dist/${npm_package_name}.js dist/${npm_package_name}.min.js"
39+
},
40+
"dependencies": {
41+
"commander": "2"
42+
},
43+
"devDependencies": {
44+
"eslint": "6",
45+
"rollup": "1",
46+
"rollup-plugin-terser": "5",
47+
"tape": "4"
48+
}
49+
}

0 commit comments

Comments
 (0)