forked from benjiec/scatter-matrix
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "scatter-matrix",
"version": "0.2.5",
"description": "Explore data matrix using scatterplot matrix",
"main": "dist/scatter-matrix.cjs.js",
"module": "dist/scatter-matrix.esm.js",
"jsnext:main": "dist/scatter-matrix.esm.js",
"unpkg": "dist/scatter-matrix.umd.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ginkgobioworks/scatter-matrix.git"
},
"author": "Benjie Chen <[email protected]>",
"contributors": [
"Dan Cahoon <[email protected]>"
],
"license": "MIT",
"peerDependencies": {
"d3": "3.x"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "rollup -c",
"clean": "rimraf dist",
"dev": "rollup -c -w",
"prepare": "npm run clean && npm run build"
},
"devDependencies": {
"rimraf": "^2.6.1",
"rollup": "^0.48.2",
"rollup-plugin-postcss": "^0.5.4"
},
"bugs": {
"url": "https://github.com/ginkgobioworks/scatter-matrix/issues"
},
"homepage": "https://github.com/ginkgobioworks/scatter-matrix#readme",
"dependencies": {}
}