-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
61 lines (61 loc) · 1.41 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
{
"name": "glsl-fast-gaussian-blur",
"version": "1.0.2",
"description": "optimized 9-tap gaussian blur for GLSL",
"main": "./9.glsl",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {
},
"devDependencies": {
"a-big-triangle": "^1.0.0",
"array-range": "^1.0.1",
"baboon-image-uri": "^1.0.1",
"browserify": "^10.2.4",
"budo": "^4.0.0",
"canvas-loop": "^1.0.4",
"garnish": "^2.1.3",
"gl-fbo": "^2.0.3",
"gl-post": "^1.0.1",
"gl-shader": "^4.0.1",
"gl-texture2d": "^2.0.8",
"glslify": "^2.1.2",
"load-img": "^1.0.0",
"raf-loop": "^1.1.0",
"uglify-js": "^2.4.23",
"webgl-context": "^2.1.2"
},
"scripts": {
"start": "budo demo/index.js:bundle.js --live --verbose -t glslify | garnish",
"build": "browserify demo/index.js -t glslify | uglifyjs -cm > bundle.js"
},
"keywords": [
"glsl",
"shader",
"webgl",
"stackgl",
"glslify",
"blur",
"blurs",
"blurred",
"blurring",
"shaders",
"tap",
"taps",
"gaussian",
"kernel",
"weights"
],
"repository": {
"type": "git",
"url": "git://github.com/Jam3/glsl-fast-gaussian-blur.git"
},
"homepage": "https://github.com/Jam3/glsl-fast-gaussian-blur",
"bugs": {
"url": "https://github.com/Jam3/glsl-fast-gaussian-blur/issues"
}
}