forked from bkaradzic/glsl-optimizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 808 Bytes
/
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
{
"name": "glsl-optimizer",
"version": "0.1.0",
"description": "GLSL optimizer",
"main": "build/Release/glslOptimizer.node",
"scripts": {
"install": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "https://github.com/aras-p/glsl-optimizer.git"
},
"keywords": [
"glsl",
"webgl",
"shader",
"optimize",
"optimizer",
"opengl",
"essl",
"es",
"opengles"
],
"readmeFilename": "README.md",
"author": "Aras Pranckevičius",
"license": "MIT",
"engines": {
"node": ">= 0.12.0"
},
"gypfile": true,
"bugs": {
"url": "https://github.com/aras-p/glsl-optimizer/issues"
},
"homepage": "https://github.com/aras-p/glsl-optimizer",
"directories": {
"test": "tests"
},
"dependencies": {
"nan": "~2.6.x"
}
}