forked from glslify/glslify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.67 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
{
"name": "glslify",
"version": "7.1.1",
"description": "A node.js-style module system for GLSL!",
"main": "index.js",
"bin": {
"glslify": "bin.js"
},
"license": "MIT",
"scripts": {
"test": "npm run test:node",
"test:node": "node test",
"test:electron": "test/electron.sh"
},
"authors": [
"Hugh Kennedy <[email protected]> (http://hughsk.io/)",
"Mikola Lysenko <[email protected]> (http://0fps.net)",
"Chris Dickinson <[email protected]> (http://neversaw.us)"
],
"dependencies": {
"bl": "^2.2.1",
"concat-stream": "^1.5.2",
"duplexify": "^3.4.5",
"falafel": "^2.1.0",
"from2": "^2.3.0",
"glsl-resolve": "0.0.1",
"glsl-token-whitespace-trim": "^1.0.0",
"glslify-bundle": "^5.0.0",
"glslify-deps": "^1.2.5",
"minimist": "^1.2.5",
"resolve": "^1.1.5",
"stack-trace": "0.0.9",
"static-eval": "^2.0.5",
"through2": "^2.0.1",
"xtend": "^4.0.0"
},
"devDependencies": {
"browserify": "^16.2.2",
"electron-prebuilt": "^1.3.3",
"electron-spawn": "^5.0.0",
"glsl-easings": "^1.0.0",
"glsl-noise": "0.0.0",
"glslify-hex": "^2.0.1",
"shell-quote": "^1.6.1",
"tap-spec": "^2.2.1",
"tape": "^4.6.0",
"uniq": "^1.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/stackgl/glslify.git"
},
"keywords": [
"ecosystem:stackgl",
"browserify-transform",
"glslify",
"glsl",
"module",
"system",
"cli",
"shader",
"webgl"
],
"browser": {
"index.js": "./browser.js"
},
"homepage": "https://github.com/stackgl/glslify",
"bugs": {
"url": "https://github.com/stackgl/glslify/issues"
}
}