-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
60 lines (60 loc) · 1.35 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
{
"name": "glsl-fxaa",
"version": "3.0.0",
"description": "FXAA implementation for glslify in WebGL",
"main": "index.glsl",
"license": "MIT",
"author": "Matt DesLauriers <dave.des@gmail.com>",
"dependencies": {},
"devDependencies": {
"a-big-triangle": "^1.0.2",
"browserify": "^10.2.4",
"budo": "^5.1.5",
"garnish": "^3.2.1",
"gl-shader": "^4.0.5",
"gl-texture2d": "^2.0.9",
"glslify": "^2.2.1",
"img": "^1.0.0",
"uglify-js": "^2.4.23",
"webgl-context": "^2.2.0"
},
"scripts": {
"start": "budo demo/index.js:bundle.js --dir demo --live -- -t glslify | garnish",
"build": "browserify demo/index.js -t glslify | uglifyjs -cm > demo/bundle.js"
},
"testling": {
"files": "test.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/glsl-fxaa.git"
},
"homepage": "https://github.com/mattdesl/glsl-fxaa",
"bugs": {
"url": "https://github.com/mattdesl/glsl-fxaa/issues"
},
"keywords": [
"glslify",
"glsl",
"webgl",
"gl",
"fxaa",
"anti",
"alias",
"aliasing",
"aa",
"anti-alias",
"msaa",
"anti-aliasing"
]
}