-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
44 lines (44 loc) · 1.26 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
{
"name": "force-in-a-box",
"version": "1.0.2",
"description": "forceInABox.js a d3 force for separating nodes in a d3.forceSimulation by their cluster or other attributes, using the group-in-a-box algorithm",
"author": "John Alexis Guerra Gómez",
"type": "module",
"main": "src/forceInABox.js",
"module": "dist/forceInABox.esm.js",
"browser": "dist/forceInABox.min.js",
"unpkg": "dist/forceInABox.min.js",
"jsdelivr": "dist/forceInABox.min.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/john-guerra/forceInABox.git"
},
"keywords": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/john-guerra/forceInABox/issues"
},
"homepage": "https://github.com/john-guerra/forceInABox#readme",
"dependencies": {
"d3": "^7.9.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"rollup": "^4.24.3",
"rollup-plugin-ascii": "0.0.3"
}
}