-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.89 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.89 KB
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
64
65
66
67
68
69
70
{
"name": "d3-x3d",
"version": "2.1.5",
"type": "module",
"description": "3D Data Driven Charting Library with D3 and X3D",
"license": "GPL-2.0",
"keywords": [
"d3",
"d3-module",
"visualization",
"chart",
"graph",
"data",
"x3d",
"3D",
"dataviz"
],
"homepage": "https://jamesleesaunders.github.io/d3-x3d/",
"author": "James Saunders (james@saunders-family.net)",
"repository": {
"type": "git",
"url": "https://github.com/jamesleesaunders/d3-x3d.git"
},
"bugs": {
"url": "https://github.com/jamesleesaunders/d3-x3d/issues"
},
"module": "index.js",
"main": "index.js",
"jsdelivr": "dist/d3-x3d.min.js",
"unpkg": "dist/d3-x3d.min.js",
"exports": {
"umd": "./dist/d3-x3d.min.js",
"default": "./index.js"
},
"scripts": {
"build": "make",
"test": "mocha 'test/*Test.js' && mocha 'test/chart/*Test.js' && tape 'test/component/*Test.js' | tap-spec",
"lint": "eslint -c 'config/.eslintrc.json' src",
"build:docs": "jsdoc -c config/jsdoc.conf.json",
"deploy:docs": "npm run build:docs && gh-pages -d docs",
"prototypes": "node src/prototypes/compilePrototypes.js"
},
"dependencies": {
"d3": "^7.9.0",
"d3-interpolate-curve": "^1.0.5",
"gl-matrix": "^3.3.0"
},
"devDependencies": {
"@babel/core": "7.26.9",
"@babel/plugin-syntax-import-assertions": "^7.26.0",
"@babel/plugin-transform-object-assign": "^7.25.9",
"@babel/preset-env": "7.26.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"chai": "^5.2.0",
"eslint": "^9.21.0",
"gh-pages": "^6.3.0",
"jsdoc": "^4.0.4",
"jsdoc-babel": "^0.5.0",
"mocha": "^11.1.0",
"rollup": "^4.34.8",
"svgdom": "^0.1.20",
"tap-spec": "^2.2.2",
"tape": "^5.9.0",
"toast-jsdoc": "^1.0.2",
"uglify-js": "^3.19.3",
"vows": "^0.8.3"
}
}