-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 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
{
"name": "@zambezi/grid",
"version": "0.19.0",
"description": "D3 component for drawing financial grids.",
"keywords": [
"d3",
"table",
"grid"
],
"scripts": {
"build": "mkdirp dist && rollup -c",
"clean": "rimraf dist",
"watch": "rollup -c -w",
"test": "standard && mocha",
"start": "npm run watch",
"pretest": "npm run clean && npm run build",
"prepublish": "npm test"
},
"license": "MIT",
"main": "dist/grid.js",
"homepage": "https://github.com/zambezi/grid",
"repository": {
"type": "git",
"url": "https://github.com/zambezi/grid.git"
},
"devDependencies": {
"babel-preset-es2015": "6.9.0",
"babel-preset-es2015-rollup": "1.1.1",
"babel-register": "6.9.0",
"babelrc-rollup": "2.0.0",
"d3": "^4.2.3",
"faker": "1.0.0",
"mkdirp": "0.5.1",
"mocha": "2.5.3",
"normalize.css": "4.2.0",
"rimraf": "2.5.3",
"rollup": "0.34.10",
"rollup-plugin-babel": "2.3.9",
"rollup-plugin-postcss": "0.1.1",
"rollup-watch": "^2.5.0",
"standard": "^9.0.1"
},
"dependencies": {
"@zambezi/d3-utils": "^3.3.0",
"@zambezi/fun": "^2.0.1",
"d3-array": "^1.0.1",
"d3-dispatch": "^1.0.1",
"d3-ease": "^1.0.1",
"d3-format": "^1.0.2",
"d3-selection": "^1.0.0",
"d3-timer": "^1.0.2",
"d3-transition": "^1.0.1",
"underscore": "^1.8.3"
}
}