-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
{
"name": "threejs-post-process-example",
"version": "1.0.0",
"description": "a tutorial on ThreeJS post processing",
"main": "index.js",
"private": true,
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "dave.des@gmail.com",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"babel-preset-es2015": "^6.3.13",
"glsl-lut": "^1.1.0",
"glslify": "^5.0.2",
"raf-loop": "^1.1.3",
"three": "^0.73.2",
"three-effectcomposer": "0.0.1",
"three-orbit-controls": "^72.0.0",
"three-shader-fxaa": "^5.0.2",
"three-vignette-background": "^1.0.2"
},
"semistandard": {
"globals": [
"THREE"
]
},
"devDependencies": {
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"budo": "^8.0.3",
"uglify-js": "^2.6.1"
},
"scripts": {
"test": "node test.js",
"start": "budo demo.js:bundle.js --live",
"no-post": "budo demo-no-post.js:bundle.js --live",
"build": "browserify demo.js | uglifyjs -m -c warnings=false > bundle.js"
},
"keywords": [
"post",
"processing",
"tutorial",
"threejs"
],
"repository": {
"type": "git",
"url": "git://github.com/Jam3/threejs-post-process-example.git"
},
"homepage": "https://github.com/Jam3/threejs-post-process-example",
"bugs": {
"url": "https://github.com/Jam3/threejs-post-process-example/issues"
},
"browserify": {
"transform": [
"babelify",
"glslify"
]
}
}