-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
75 lines (75 loc) · 1.6 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
{
"name": "glsl-lut",
"version": "1.1.3",
"description": "lookup table color transforms for glslify",
"main": "index.js",
"license": "MIT",
"author": "Matt DesLauriers <[email protected]>",
"devDependencies": {
"a-big-triangle": "0.0.0",
"browserify": "^9.0.8",
"budo": "^3.0.4",
"garnish": "^2.1.3",
"gl-context": "~0.1.0",
"gl-now": "~1.3.1",
"gl-shader": "^4.0.1",
"gl-texture2d": "~1.0.1",
"glslify": "^2.1.2",
"pako": "^2.1.0",
"png-tools": "^1.0.4",
"tape": "~2.13.2",
"watchify": "^3.1.1"
},
"bin": {
"glsl-lut": "./bin/cmd.js"
},
"scripts": {
"test": "tape test.js",
"start": "budo example/index.js --dir example --live -t glslify | garnish",
"build": "browserify example/index.js -t glslify -o example/static/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-lut.git"
},
"homepage": "https://github.com/mattdesl/glsl-lut",
"bugs": {
"url": "https://github.com/mattdesl/glsl-lut/issues"
},
"directories": {
"example": "example"
},
"keywords": [
"glslify",
"glsl",
"webgl",
"shader",
"color",
"transform",
"lookup",
"table",
"lut",
"instagram",
"filter",
"curves",
"brightness",
"contrast",
"saturation",
"hue",
"levels",
"grayscale"
]
}