-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.37 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
{
"name": "glsl-sat",
"version": "0.1.0",
"description": "glsl-sat is a shader generator for WebGL, to generate a summed-area-table texture of an input texture",
"main": "glsl-sat.js",
"repository": {
"type": "git",
"url": "git+https://github.com/realazthat/glsl-sat.git"
},
"bugs": {
"url": "https://github.com/realazthat/glsl-sat/issues"
},
"author": "Azriel Fasten",
"license": "MIT",
"semistandard": {
"ignore": [
"dist/*",
"www/*"
]
},
"dependencies": {
"glsl-quad": "1.0.0",
"regl": "^0.10.0"
},
"devDependencies": {
"disc": "^1.3.2",
"glsl-numerify": "1.0.0",
"indexhtmlify": "^1.3.0",
"jquery-browserify": "^1.8.1",
"resl": "^1.0.1",
"semistandard": "~8.0.0",
"snazzy": "^4.0.0"
},
"keywords": [
"webgl",
"gl",
"graphics",
"computer graphics",
"opengl",
"glsl",
"data",
"shader",
"image processing",
"dsp",
"convolution",
"kernel",
"filter",
"blur",
"summed area table"
],
"scripts": {
"mytest": "semistandard | snazzy",
"build": "npm run build-script && npm run build-demo",
"build-script": "mkdir -p ./dist && browserify glsl-sat.js --standalone glsl-sat > ./dist/glsl-sat.js",
"build-demo": "mkdir -p ./www/glsl-sat-demo/ && browserify ./glsl-sat-demo.js | indexhtmlify > ./www/glsl-sat-demo/index.html"
}
}