-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
38 lines (38 loc) · 896 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": "js2glsl",
"version": "0.3.0",
"description": "An api which transpiles a subset of JS into GLSL",
"main": "js2glsl.js",
"scripts": {
"install": "gulp"
},
"author": "Justin Berger",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jdavidberger/js2glsl"
},
"dependencies": {
"browserify": "^11.0.1",
"escodegen": "^1.8.0",
"esprima": "^2.4.1",
"gl-matrix": "^2.3.1",
"gulp": "^3.9.0",
"gulp-jshint": "^1.12.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.4.0",
"jshint": "^2.9.2",
"query-string": "^2.4.0",
"underscore": "^1.8.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"weakmap": "0.0.6"
},
"devDependencies": {
"gl-shader": "^4.0.5",
"gulp-jshint": "^1.11.2",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"unit.js": "^2.0.0"
}
}