-
Notifications
You must be signed in to change notification settings - Fork 227
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "rough-viz",
"version": "2.0.5",
"description": "Hand drawn, rough, sketchy data visualization in svg.",
"jsdelivr": "dist/roughviz.umd.js",
"main": "dist/roughviz.cjs.js",
"module": "dist/roughviz.es.js",
"unpkg": "dist/roughviz.umd.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "jest --env=jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwilber/roughViz.git"
},
"keywords": [
"chart",
"graph",
"rough",
"hand-drawn",
"sketchy",
"dataviz",
"data visualization"
],
"author": "jwilber",
"license": "MIT",
"bugs": {
"url": "https://github.com/jwilber/roughViz/issues"
},
"homepage": "https://github.com/jwilber/roughViz#readme",
"dependencies": {
"d3-array": "^2.3.1",
"d3-axis": "^1.0.12",
"d3-fetch": "^1.1.2",
"d3-force": "^3.0.0",
"d3-format": "^1.4.1",
"d3-scale": "^3.2.0",
"d3-scale-chromatic": "^1.5.0",
"d3-selection": "^1.4.0",
"d3-shape": "^1.3.5",
"roughjs": "^4.0.0"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-strongloop": "^2.1.0",
"jest": "^24.9.0",
"rollup-plugin-terser": "^7.0.2",
"vite": "^4.4.9"
}
}