-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
{
"name": "@uwdata/divi",
"version": "0.0.0",
"description": "Dynamic interaction for SVG visualizations",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/uwdata/DIVI.git"
},
"type": "module",
"author": "Luke Snyder (https://luke-s-snyder.github.io)",
"license": "BSD-3-Clause",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prebuild": "rimraf dist && mkdir dist",
"build": "rollup -c",
"lint": "eslint src test --ext .js",
"test": "mocha 'test/node/**/*-test.js'",
"prepublishOnly": "npm run test && npm run lint && npm run build",
"serve": "wds --watch"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"@web/dev-server": "^0.4.6",
"eslint": "^8.41.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.4.0",
"rimraf": "^5.0.5",
"rollup": "^4.16.4",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svg": "^2.0.0",
"vitepress": "^1.1.4"
},
"dependencies": {
"arquero": "^5.4.0",
"bootstrap": "^5.2.3",
"d3-array": "^3.2.3",
"d3-dispatch": "^3.0.1",
"d3-drag": "^3.0.0",
"d3-format": "^3.1.0",
"d3-path": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-svg-annotation": "^2.5.1",
"d3-time-format": "^4.1.0",
"d3-transition": "^3.0.1",
"svg-path-parser": "^1.1.0"
}
}