-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
73 lines (73 loc) · 1.51 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
{
"name": "glsl-transpiler",
"version": "3.0.3",
"description": "Transpile GLSL to JS",
"main": "index.js",
"type": "module",
"dependencies": {
"glsl-parser": "^2.0.1",
"glsl-tokenizer": "^2.1.5",
"inherits": "^2.0.1",
"pick-by-alias": "^1.2.0",
"prepr": "^1.2.5",
"subscript": "^7.3.1"
},
"devDependencies": {
"almost-equal": "^1.1.0",
"gl-matrix": "^2.3.2",
"glslify": "^7.1.1",
"glslify-promise": "^1.0.2",
"is-browser": "^2.0.1",
"ndarray": "^1.0.18",
"stream-array": "^1.1.1",
"string-to-stream": "^1.0.1",
"tape": "^4.9.1",
"to-float32": "^1.0.1"
},
"browserify": {
"transform": [
"glslify"
]
},
"files": [
"index.js",
"stream.js",
"lib"
],
"directories": {
"lib": "./lib"
},
"scripts": {
"test": "node test/index.js",
"test:browser": "budo test/index.js",
"benchmark": "node test/benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stackgl/glsl-transpiler.git"
},
"keywords": [
"headless-gl",
"gl",
"glsl",
"glsl.js",
"glsl-transpiler",
"transpiler",
"stackgl",
"js",
"nogl",
"opengl",
"shaders",
"webgl",
"gpu"
],
"author": "Dmitry Yv <[email protected]>",
"contributors": [
"Xiaoji Chen (http://pessimistress.github.io/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/stackgl/glsl-transpiler/issues"
},
"homepage": "https://github.com/stackgl/glsl-transpiler#readme"
}