-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "citibike-trips",
"version": "0.0.2",
"scripts": {
"start": "budo src/index.js:bundle.js --live --open",
"build": "browserify src/index.js > bundle.js",
"serve": "open http://localhost:8080 && python -m SimpleHTTPServer 8080",
"lint": "standard"
},
"dependencies": {
"3d-view-controls": "^2.2.0",
"argv": "^0.0.2",
"browserify": "^14.4.0",
"budo": "^10.0.3",
"camera-picking-ray": "^1.0.1",
"canvas-fit": "^1.5.0",
"cat-rom-spline": "^1.0.0",
"color": "^2.0.0",
"d3-geo": "^1.6.4",
"dat-gui": "^0.5.0",
"dom-css": "^2.1.0",
"eslint": "^4.2.0",
"fast-csv": "^2.4.0",
"geojson-bbox": "^0.0.0",
"gl-mat4": "^1.1.4",
"gl-vec2": "^1.0.0",
"glslify": "^6.1.0",
"lerp": "^1.0.3",
"new-array": "^1.0.0",
"projections": "^1.0.0",
"ray-plane-intersection": "^1.0.0",
"regl": "^1.3.0",
"smoothstep": "^1.0.1",
"spring-animator": "^1.0.3",
"standard": "^10.0.2",
"topojson": "^3.0.0"
},
"browserify": {
"transform": [
"glslify"
]
},
"eslintConfig": {
"extends": [
"standard",
"standard-jsx"
]
}
}