forked from jakezatecky/d3-funnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "d3-funnel",
"version": "1.0.1",
"description": "A library for rendering SVG funnel charts using D3.js",
"author": "Jake Zatecky",
"license": "MIT",
"keywords": [
"d3",
"funnel",
"pyramid",
"svg",
"chart"
],
"repository": {
"type": "git",
"url": "https://github.com/jakezatecky/d3-funnel"
},
"bugs": "https://github.com/jakezatecky/d3-funnel/issues",
"main": "dist/d3-funnel.js",
"scripts": {
"gh-deploy": "git subtree push --prefix examples/dist origin gh-pages"
},
"devDependencies": {
"babel-core": "^6.3.17",
"babel-eslint": "^7.1.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.1.2",
"babel-preset-stage-0": "^6.1.2",
"browser-sync": "^2.18.6",
"chai": "^4.0.1",
"chai-spies": "^0.7.1",
"eslint": "^3.12.0",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^4.0.0",
"gulp-eslint": "^3.0.1",
"gulp-header": "^1.7.1",
"gulp-mocha-phantomjs": "^0.12.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-scss-lint": "^0.4.0",
"gulp-uglify": "^3.0.0",
"lodash": "^4.0.0",
"mocha": "^3.0.0",
"webpack": "^2.2.1",
"webpack-stream": "^3.0.0"
},
"dependencies": {
"d3": "^4.2.0",
"d3-selection": "^1.0.1",
"d3-selection-multi": "^1.0.0",
"shortid": "^2.2.6"
}
}