-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"name": "d3-hilbert",
"version": "1.4.0",
"description": "D3 layout to visualize distance variables using a continuous Hilbert space-filling space.",
"keywords": [
"d3",
"hilbert"
],
"author": {
"name": "Vasco Asturiano",
"url": "https://github.com/vasturiano"
},
"license": "MIT",
"type": "module",
"unpkg": "dist/d3-hilbert.min.js",
"main": "dist/d3-hilbert.mjs",
"module": "dist/d3-hilbert.mjs",
"exports": {
"umd": "./dist/d3-hilbert.min.js",
"default": "./dist/d3-hilbert.mjs"
},
"homepage": "https://github.com/vasturiano/d3-hilbert",
"repository": {
"type": "git",
"url": "https://github.com/vasturiano/d3-hilbert.git"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c",
"prepare": "npm run build"
},
"files": [
"dist/**/*"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"rimraf": "^5.0.5",
"rollup": "^4.1.4"
},
"engines": {
"node": ">=12"
}
}