-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "d3-twodim",
"version": "0.2.1",
"description": "d3-twodim is a D3.v3.js module for creating two-dimensional representations of data for end-user exploration.",
"keywords": [
"d3",
"scatterplot",
"scatter",
"splatterplot",
"2d",
"2d points"
],
"license": "BSD-3-Clause",
"author": {
"name": "Alper Sarikaya",
"url": "http://cs.wisc.edu/~sarikaya/"
},
"main": "build/d3-twodim.js",
"jsnext:main": "index",
"homepage": "http://uwgraphics.github.io/d3-twodim/",
"bugs": "https://github.com/uwgraphics/d3-twodim/issues",
"repository": {
"type": "git",
"url": "https://github.com/uwgraphics/d3-twodim.git"
},
"scripts": {
"pretest": "rm -rf build && mkdir build && rollup -c -- index.js",
"test": "tape 'test/**/*-test.js'",
"prepublish": "npm run test && uglifyjs build/d3-twodim.js -c -m -o build/d3-twodim.min.js && rm -f build/d3-twodim.zip && zip -j build/d3-twodim.zip -- LICENSE README.md build/d3-twodim.js build/d3-twodim.min.js"
},
"dependencies": {
"d3": "~3.5.17",
"d3-hexbin": "~0.2"
},
"devDependencies": {
"faucet": "0.0",
"rollup": "0.20.5",
"rollup-plugin-node-resolve": "^2.0.0",
"tape": "4",
"uglify-js": "2"
}
}