forked from pmndrs/postprocessing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (71 loc) · 1.59 KB
/
package.json
File metadata and controls
81 lines (71 loc) · 1.59 KB
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
72
73
74
75
76
77
78
79
80
81
{
"name": "postprocessing",
"version": "2.1.0",
"description": "A post processing library that provides the means to implement 2D filter effects for three.js.",
"homepage": "https://github.com/vanruesc/postprocessing",
"main": "build/postprocessing.js",
"module": "src/index.js",
"license": "Zlib",
"keywords": [
"2d",
"3d",
"rendering",
"filter",
"effect",
"composer",
"rendertexture",
"rendertarget",
"effectcomposer"
],
"author": {
"name": "Raoul van Rüschen",
"email": "vanruesc@outlook.de"
},
"repository": {
"type": "git",
"url": "https://github.com/vanruesc/postprocessing.git"
},
"bugs": {
"url": "https://github.com/vanruesc/postprocessing/issues"
},
"files": [
"src",
"build"
],
"scripts": {
"test": "grunt --production",
"prepublishOnly": "grunt prepublish",
"postpublish": "grunt postpublish"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=4.0.0"
},
"dependencies": {
"dat.gui": "0.6.x",
"stats.js": "0.17.x",
"three": "0.84.x"
},
"devDependencies": {
"babel-preset-es2015-rollup": "3.0.x",
"grunt": "1.x.x",
"grunt-cli": "1.2.x",
"grunt-contrib-nodeunit": "1.0.x",
"grunt-contrib-uglify": "2.2.x",
"grunt-contrib-yuidoc": "1.0.x",
"grunt-contrib-clean": "1.0.x",
"grunt-contrib-copy": "1.0.x",
"grunt-eslint": "19.0.x",
"grunt-lemon": "0.1.x",
"grunt-rollup": "1.0.x",
"jit-grunt": "0.10.x",
"load-grunt-config": "0.19.x",
"rollup-plugin-babel": "2.7.x",
"rollup-plugin-node-resolve": "2.0.x",
"rollup-plugin-string": "2.0.x",
"time-grunt": "1.4.x"
},
"peerDependencies": {
"grunt": ">=0.4.0"
}
}