-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 910 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 910 Bytes
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
{
"name": "d3axis",
"version": "0.0.2",
"description": "A basic wrapper for d3-scale and d3-axis, mainly used as a dependency for our chart and slider",
"main": "axis.js",
"scripts": {
"build": "bundle-module --entry=./axis.js --name=d3axis",
"minify": "bundle-module --entry=./axis.js --name=d3axis --min",
"watch": "bundle-module --entry=./axis.js --name=d3axis --watch",
"test": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimeMagazineLabs/d3axis.git"
},
"keywords": [
"d3",
"axis"
],
"author": "Chris Wilson",
"license": "MIT",
"bugs": {
"url": "https://github.com/TimeMagazineLabs/d3axis/issues"
},
"homepage": "https://github.com/TimeMagazineLabs/d3axis#readme",
"dependencies": {
"d3-axis": "^1.0.12",
"d3-scale": "^3.2.1",
"d3-selection": "^2.0.0",
"d3-transition": "^2.0.0"
}
}