-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
36 lines (36 loc) · 1.1 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
{
"name": "d3-workbench",
"version": "0.11.1",
"description": "A d3.js-powered workbench for rapid visualization prototyping",
"repository": {
"type": "git",
"url": "git+https://github.com/BastiTee/d3-workbench"
},
"preferGlobal": true,
"bin": {
"d3-workbench": "bin/d3-wb-server.js"
},
"scripts": {
"start": "node bin/d3-wb-server.js",
"postinstall": "node bin/postinstall.js",
"prepublishOnly": "./node_modules/.bin/eslint --fix d3-wb-server/**/*.js d3-wb/**/*.js default-content/**/*.js && node bin/prepublish.js"
},
"author": "Basti Tee",
"license": "GPL-3.0",
"homepage": "https://github.com/BastiTee/d3-workbench",
"dependencies": {
"express": "4.x",
"minimist": "1.x",
"browser-sync": "2.x",
"d3": "5.x",
"d3-svg-annotation": ">=2.1.0",
"d3-svg-legend": ">=2.24.1",
"d3-cloud": ">=1.2.4",
"d3-sankey": ">=0.7.1"
},
"devDependencies": {
"eslint": "^4.13.1",
"eslint-config-google": "^0.9.1",
"node-minify": "^2.4.1"
}
}