forked from dc-js/dc.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.15 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
82
83
84
85
86
87
88
89
{
"name": "dc",
"version": "3.0.3",
"license": "Apache-2.0",
"copyright": "2017",
"description": "A multi-dimensional charting library built to work natively with crossfilter and rendered using d3.js ",
"keywords": [
"visualization",
"svg",
"animation",
"canvas",
"chart",
"dimensional",
"crossfilter",
"d3"
],
"homepage": "http://dc-js.github.io/dc.js/",
"bugs": "https://github.com/dc-js/dc.js/issues",
"author": {
"name": "Nick Zhu",
"url": "http://nzhu.blogspot.ca/"
},
"repository": {
"type": "git",
"url": "https://github.com/dc-js/dc.js.git"
},
"dependencies": {
"crossfilter2": "^1.4.5",
"d3": "^5.1"
},
"devDependencies": {
"compare-versions": "^3.1.0",
"file-saver": "^1.3.8",
"grunt": "^1.0.2",
"grunt-browserify": "^5.2.0",
"grunt-cli": "~1.2",
"grunt-contrib-concat": "~1.0",
"grunt-contrib-connect": "~1.0",
"grunt-contrib-copy": "~1.0",
"grunt-contrib-cssmin": "2.x",
"grunt-contrib-jasmine": "1.x",
"grunt-contrib-jshint": "~1.1",
"grunt-contrib-uglify": "~3.2",
"grunt-contrib-watch": "~1.0",
"grunt-docco2": "^0.2.1",
"grunt-fileindex": "~0.1",
"grunt-gh-pages": "~2",
"grunt-jscs": "~3.0",
"grunt-jsdoc": "^2.2.1",
"grunt-jsdoc-to-markdown": "3.x",
"grunt-karma": "^2.0.0",
"grunt-markdown": "~0.7",
"grunt-sass": "^2.1.0",
"grunt-shell": "~2.1",
"ink-docstrap": "^1.3.2",
"jasmine-core": "^2.99.1",
"jsdifflib": "~1.1",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^1.1.1",
"karma-sauce-launcher": "^1.2.0",
"karma-summary-reporter": "^1.5.0",
"load-grunt-tasks": "~3.5",
"marked": "~0.3.19",
"time-grunt": "~1.4",
"uglify-js": "^3.3.17"
},
"scripts": {
"test": "grunt test"
},
"npmName": "dc",
"npmFileMap": [
{
"basePath": "/",
"files": [
"dc.css",
"dc.min.css",
"dc.min.js",
"dc.min.js.map",
"dc.js",
"dc.js.map"
]
}
],
"browser": "dc.js",
"main": "dc.js"
}