-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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": "@zambezi/simple-table",
"version": "1.0.1",
"description": "D3 components to build simple HTML tables from your data.",
"keywords": [
"d3",
"table"
],
"scripts": {
"build": "mkdirp dist && rollup -c",
"clean": "rimraf dist",
"watch": "rollup -c -w",
"test": "mocha",
"pretest": "npm run clean && npm run build",
"prepublish": "npm test"
},
"license": "MIT",
"main": "dist/simple-table.js",
"homepage": "https://github.com/zambezi/simple-table",
"repository": {
"type": "git",
"url": "https://github.com/zambezi/simple-table.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",
"mkdirp": "^0.5.1",
"mocha": "^2.5.3",
"rimraf": "^2.5.3",
"rollup": "^0.26.3",
"rollup-plugin-babel": "^2.3.9"
},
"dependencies": {
"@zambezi/d3-rebind": "^3.5.17",
"d3-dispatch": "^1.0.0",
"d3-selection": "^1.0.0",
"underscore": "^1.8.3"
}
}