-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.47 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
{
"name": "d3-force-magnetic",
"version": "1.0.1",
"description": "A natural attraction/repulsion force type for the d3-force simulation engine.",
"keywords": [
"d3",
"d3-module",
"d3-force",
"magnetic",
"electrostatic",
"gravity",
"attraction",
"physics",
"layout",
"graph",
"force",
"simulation"
],
"homepage": "https://github.com/vasturiano/d3-force-magnetic",
"license": "MIT",
"author": {
"name": "Vasco Asturiano",
"url": "https://github.com/vasturiano"
},
"type": "module",
"unpkg": "dist/d3-force-magnetic.min.js",
"main": "dist/d3-force-magnetic.mjs",
"module": "dist/d3-force-magnetic.mjs",
"exports": {
"umd": "./dist/d3-force-magnetic.min.js",
"default": "./dist/d3-force-magnetic.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/vasturiano/d3-force-magnetic.git"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c",
"prepare": "npm run build"
},
"files": [
"dist/**/*"
],
"dependencies": {
"d3-binarytree": "1",
"d3-octree": "1",
"d3-quadtree": "2 - 3"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"rimraf": "^4.1.2",
"rollup": "^3.14.0"
},
"engines": {
"node": ">=12"
}
}