-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.24 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
{
"name": "three-glslify-example",
"version": "1.0.0",
"description": "a simple example of ThreeJS with glslify",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"glsl-checker": "^1.0.1",
"glsl-halftone": "^1.0.4",
"glsl-hash-blur": "^1.0.2",
"three": "^0.84.0",
"three-orbit-viewer": "^69.3.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^14.0.0",
"budo": "^9.4.5",
"glslify": "^6.0.1",
"uglify-js": "^2.7.5"
},
"scripts": {
"start": "budo index.js:bundle.js --live",
"build": "browserify index.js | uglifyjs -cm > bundle.js"
},
"private": true,
"keywords": [
"glslify",
"three",
"js",
"threejs",
"glsl",
"glslbin",
"stackgl"
],
"browserify": {
"transform": [
"babelify",
"glslify"
]
},
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/three-glslify-example.git"
},
"homepage": "https://github.com/mattdesl/three-glslify-example",
"bugs": {
"url": "https://github.com/mattdesl/three-glslify-example/issues"
}
}