This repository was archived by the owner on Apr 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 KB
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
{
"name": "crossfilter-async",
"version": "1.0.0",
"description": "An asynchronous Crossfilter wrapper",
"main": "./src/crossfilter-async.js",
"scripts": {
"test": "vows"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crossfilter/crossfilter-async.git"
},
"keywords": [
"crossfilter",
"promise",
"asynchonous",
"webworker"
],
"author": "Ethan Jewett <ethan.jewett@coredatra.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/crossfilter/crossfilter-async/issues"
},
"homepage": "https://github.com/crossfilter/crossfilter-async#readme",
"dependencies": {
"crossfilter2": "^2.0.0-alpha.3",
"operative": "^0.4.4"
},
"devDependencies": {
"browserify": "^12.0.1",
"browserify-shim": "^3.8.11",
"crossfilter2": "^2.0.0-alpha.3",
"d3": "^3.5.8",
"gulp": "^3.9.0",
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"gulp-karma": "0.0.5",
"gulp-load-plugins": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^1.4.2",
"jasmine-core": "^2.3.4",
"jscs-trailing-whitespace-in-source": "0.0.1",
"jshint": "^2.9.1-rc1",
"jshint-stylish": "^2.1.0",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.2.1",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"phantomjs": "^1.9.18",
"vinyl-source-stream": "^1.1.0",
"webworker-threads": "^0.6.2"
},
"browserify-shim": {
"operative": "global:operative",
"crossfilter2": "global:crossfilter"
}
}