-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 910 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
{
"name": "glsl-min-stream",
"version": "1.0.0",
"description": "through stream that transforms glsl-parser AST nodes and rewrites variables into shorter forms",
"main": "index.js",
"scripts": {
"test": "tap"
},
"repository": {
"type": "git",
"url": "git://github.com/gl-modules/glsl-min-stream.git"
},
"keywords": [
"glsl",
"minification",
"stream"
],
"authors": [
"Hugh Kennedy <hughskennedy@gmail.com> (http://hughsk.io/)",
"Mikola Lysenko <mikolalysenko@gmail.com> (http://0fps.net)",
"Chris Dickinson <chris@neversaw.us> (http://neversaw.us)"
],
"license": "MIT",
"dependencies": {
"shortest": "0.0.0",
"through": "~1.1.2",
"cssauron-glsl": "X.X.X"
},
"devDependencies": {
"glsl-deparser": "^1.0.0",
"glsl-parser": "^2.0.1",
"glsl-tokenizer": "^2.1.5",
"tap": "^14.2.2"
},
"files": [
"index.js"
]
}