-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "hilbert-curve",
"version": "2.0.5",
"description": "Hilbert curve mapping",
"main": "dist/hilbert-curve.umd.js",
"module": "dist/hilbert-curve.esm.js",
"unpkg": "dist/hilbert-curve.umd.min.js",
"jsdelivr": "dist/hilbert-curve.umd.min.js",
"scripts": {
"build": "rollup -c",
"pretest": "npm run build",
"release": "npx np",
"test": "jest",
"version": "npm run build"
},
"keywords": [
"fractal",
"hilbert curve",
"space-filling curve",
"visualization"
],
"author": {
"name": "Markus Hsi-Yang Fritz",
"email": "markus.h.y.fritz@gmail.com"
},
"homepage": "https://github.com/mhyfritz/hilbert-curve",
"repository": {
"type": "git",
"url": "https://github.com/mhyfritz/hilbert-curve.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"camelcase": "^5.3.1",
"jest": "^24.9.0",
"rollup": "^1.28.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.3"
},
"dependencies": {
"@mhyfritz/bin-data": "0.0.3"
}
}