-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
71 lines (71 loc) · 1.63 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
64
65
66
67
68
69
70
71
{
"name": "d3-ez",
"version": "4.0.6",
"description": "D3 Easy Reusable Chart Library",
"license": "GPL-2.0",
"keywords": [
"d3",
"d3-module",
"visualization",
"chart",
"graph",
"data",
"svg",
"dataviz"
],
"homepage": "https://github.com/jamesleesaunders/d3-ez",
"author": "James Saunders ([email protected])",
"repository": {
"type": "git",
"url": "https://github.com/jamesleesaunders/d3-ez.git"
},
"bugs": {
"url": "https://github.com/jamesleesaunders/d3-ez/issues"
},
"type": "module",
"files": [
"dist/**/*.js",
"src/**/*.js"
],
"module": "src/index.js",
"main": "src/index.js",
"jsdelivr": "dist/d3-ez.min.js",
"unpkg": "dist/d3-ez.min.js",
"exports": {
"umd": "./dist/d3-ez.min.js",
"default": "./src/index.js"
},
"scripts": {
"build": "make",
"pretest": "make",
"test": "tape 'test/**/*Test.js' | tap-arc",
"build:docs": "jsdoc -c config/jsdoc.conf.json",
"deploy:docs": "npm run build:docs && gh-pages -d docs"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/plugin-external-helpers": "^7.24.7",
"@babel/plugin-syntax-import-attributes": "^7.24.7",
"@babel/plugin-transform-object-assign": "^7.24.7",
"@babel/preset-env": "^7.25.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"eslint": "^9.6.0",
"gh-pages": "^6.1.1",
"jsdoc": "^4.0.3",
"jsdom": "^25.0.1",
"rollup": "^4.18.1",
"tap-arc": "^1.2.2",
"tape": "^5.8.1",
"toast-jsdoc": "^1.0.2",
"uglify-js": "^3.18.0",
"vows": "^0.8.3"
},
"dependencies": {
"d3": "^7.9.0"
},
"peerDependencies": {
"d3": "^7.9.0"
}
}