-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
81 lines (81 loc) · 1.83 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "d3.chart.bubble-matrix",
"description": "A bubble-matrix chart for the Web",
"version": "1.0.0-alpha",
"author": "Benbria",
"license": {
"type": "MIT Expat",
"url": "https://raw.github.com/benbria/d3.chart.bubble-matrix/master/LICENSE"
},
"repository": {
"type": "git",
"url": "git://github.com/benbria/d3.chart.bubble-matrix.git"
},
"keywords": [
"d3.js",
"visualization",
"svg",
"bubble",
"bubbles",
"matrix"
],
"files": [
"LICENSE",
"src",
"vendor",
"*.css"
],
"main": "src/chart.js",
"d3.chart": {
"version": "0.1.3"
},
"dependencies": {
"d3": "~3.4.1",
"lodash": "~2.4.1",
"browserify-shim": "~3.1.4"
},
"devDependencies": {
"karma": "0.10.4",
"karma-chrome-launcher": "0.1.0",
"karma-firefox-launcher": "0.1.0",
"karma-mocha": "0.1.0",
"karma-phantomjs-launcher": "0.1.0",
"karma-sinon-chai": "0.1.1",
"browserify": "~3.20.0",
"watchify": "~0.5.0",
"serve": "~1.3.0",
"stylus": "~0.42.0",
"mocha": "~1.15.1"
},
"engines": {
"node": ">= 0.8",
"npm": ">= 1.3"
},
"scripts": {
"prepublish": "npm run build-css",
"test": "npm run build-test && npm run build-css && karma start karma.conf.js",
"build-test": "mkdir -p test/.build && browserify -d test/*.spec.js > test/.build/tests.js",
"build-css": "stylus src -o .",
"example": "bin/example.sh"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"d3.chart": "./vendor/d3.chart.js",
"d3.chart.base": "./vendor/d3.chart.base.js",
"d3.chart.bubble-matrix": "./src/chart.js"
},
"browserify-shim": {
"d3.chart": {
"exports": "d3Chart",
"depends": "d3:d3"
},
"d3.chart.base": {
"exports": "d3ChartBase",
"depends": "d3:d3"
}
}
}