forked from mattdesl/webgl-lines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.26 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
{
"name": "webgl-lines",
"version": "1.0.0",
"description": "some interactive content for a blog post",
"main": "index.js",
"license": "MIT",
"private": true,
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"2d-context": "^1.2.0",
"adaptive-bezier-curve": "^1.0.3",
"arc-to": "^1.0.1",
"array-pack-2d": "^0.1.0",
"bunny": "^1.0.1",
"canvas-fit": "^1.2.0",
"clamp": "^1.0.1",
"color-style": "^1.0.0",
"dom-classes": "0.0.1",
"domify": "^1.3.1",
"domready": "^1.0.7",
"dtype": "^0.1.0",
"extrude-polyline": "^1.0.6",
"garnish": "^2.1.0",
"gl-basic-shader": "^1.2.2",
"gl-buffer": "^2.1.1",
"gl-geometry": "^1.0.3",
"gl-mat4": "^1.1.2",
"gl-shader-core": "^2.2.0",
"gl-vao": "^1.2.0",
"gl-vec3": "^1.0.3",
"gl-wireframe": "^1.0.1",
"glslify": "1.6.1",
"lodash.throttle": "^3.0.1",
"marked": "^0.3.3",
"minstache": "^1.2.0",
"polyline-normals": "^2.0.2",
"premultiplied-rgba": "^1.0.1",
"quantize-vertices": "^1.0.2",
"raf-loop": "^1.0.1",
"randf": "^1.0.0",
"rescale-vertices": "^1.0.0",
"teapot": "^1.0.0",
"touches": "^1.0.3",
"vectors": "^0.1.0",
"vertices-bounding-box": "^1.0.0",
"webgl-context": "^2.1.1",
"xtend": "^4.0.0"
},
"devDependencies": {
"babelify": "^5.0.3",
"brfs": "^1.4.0",
"browserify": "^9.0.3",
"budo": "^1.2.0",
"factor-bundle": "^2.3.3",
"open-url": "^2.0.2",
"uglify-js": "^2.4.16",
"uglify-stream": "^1.1.0",
"watchify": "git://github.com/mattdesl/watchify#fast"
},
"scripts": {
"native": "./dev.sh native",
"triangles": "./dev.sh triangles",
"expanded": "./dev.sh expanded",
"projected": "./dev.sh projected",
"build-all": "mkdir -p build && ./factor.js && ./compress.sh native triangles expanded projected"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/webgl-lines.git"
},
"homepage": "https://github.com/mattdesl/webgl-lines",
"bugs": {
"url": "https://github.com/mattdesl/webgl-lines/issues"
},
"browserify": {
"transform": [
"babelify",
"brfs",
"glslify"
]
}
}