forked from vega/datalib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.29 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
{
"name": "datalib",
"version": "1.0.11",
"description": "JavaScript utilites for loading, summarizing and working with data.",
"keywords": [
"data",
"table",
"statistics",
"parse",
"csv",
"tsv",
"json",
"utility"
],
"repository": {
"type": "git",
"url": "http://github.com/uwdata/datalib.git"
},
"author": {
"name": "UW Interactive Data Lab",
"url": "http://idl.cs.washington.edu"
},
"license": "BSD-3-Clause",
"dependencies": {
"d3": "^3.5.x",
"topojson": "^1.6.18",
"request": "^2.53.0",
"sync-request": "^2.0.1"
},
"devDependencies": {
"browserify": "^9.0.8",
"browserify-shim": "^3.8.5",
"chai": "^1.10.0",
"gulp": "^3.8.11",
"gulp-rename": "^1.2.2",
"gulp-spawn-mocha": "^2.0.1",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.4",
"mocha": "^2.1.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"main": "src/index.js",
"scripts": {
"test": "gulp test"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"d3": "global:d3",
"topojson": "global:topojson"
},
"browser": {
"buffer": false,
"fs": false,
"http": false,
"request": false,
"sync-request": false,
"url": false
}
}