-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
65 lines (65 loc) · 1.97 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "d3-hexgrid",
"version": "0.3.1",
"description": "Regular hexagon tessellation with edge cover detection.",
"keywords": [
"d3",
"d3-module",
"d3-hexgrid"
],
"homepage": "https://github.com/larsvers/d3-hexgrid",
"author": {
"name": "Lars Verspohl",
"url": "https://www.datamake.io"
},
"license": "BSD-3-Clause",
"main": "dist/d3-hexgrid.js",
"module": "index",
"jsnext:main": "index",
"unpkg": "dist/d3-hexgrid.min.js",
"browserslist": "> 0.25%, not dead",
"repository": {
"type": "git",
"url": "https://github.com/larsvers/d3-hexgrid.git"
},
"scripts": {
"lint": "eslint src/",
"build": "rm -rf dist && mkdir dist && rollup --config rollup.config.js",
"watch": "rollup --config rollup.config.js --watch",
"pretest": "npm run build",
"test": "tape 'test/**/*.test.js' | tap-spec",
"test:simple": "tape 'test/**/*.test.js'",
"prepare": "npm run test && uglifyjs dist/d3-hexgrid.js -c -m -o dist/d3-hexgrid.min.js",
"postpublish": "zip -j dist/d3-hexgrid.zip -- LICENSE README.md dist/d3-hexgrid.js dist/d3-hexgrid.min.js"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"canvas": "^2.6.1",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"jsdom": "^16.2.2",
"rollup": "^2.8",
"rollup-plugin-license": "^2.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.9",
"topojson": "^3.0",
"uglify-js": "^3.4"
},
"dependencies": {
"@babel/runtime": "^7.9.6",
"d3-array": "^1.2",
"d3-geo": "^1.10",
"d3-hexbin": "^0.2",
"d3-polygon": "^1.0"
}
}