-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "geocountries",
"version": "2.0.0",
"description": "A tool to get ISO codes and geometries from country names",
"main": "dist/index.min.js",
"module": "src/index.js",
"jsdelivr": "dist/index.min.js",
"unpkg": "dist/index.min.js",
"scripts": {
"build": "rollup --config",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neocarto/geocountries.git"
},
"keywords": [
"iso3",
"countries"
],
"author": "Nicolas Lambert",
"license": "MIT",
"bugs": {
"url": "https://github.com/neocarto/geocodes/issues"
},
"homepage": "https://github.com/neocarto/geocodes#readme",
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"d3-array": "^3.1.1",
"d3-fetch": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"d3-selection": "^3.0.0",
"fs": "^0.0.1-security"
}
}