forked from pmndrs/postprocessing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "postprocessing",
"version": "6.18.0",
"description": "A post processing library that provides the means to implement image filter effects for three.js.",
"homepage": "https://github.com/vanruesc/postprocessing",
"main": "build/postprocessing.js",
"module": "build/postprocessing.esm.js",
"exports": {
".": "./build/postprocessing.esm.js"
},
"sideEffects": false,
"license": "Zlib",
"keywords": [
"rendering",
"image",
"filter",
"effect",
"composer",
"pass",
"post",
"processing",
"gpgpu",
"rtt",
"rendertexture",
"rendertarget",
"three"
],
"author": {
"name": "Raoul van Rüschen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/vanruesc/postprocessing.git"
},
"bugs": {
"url": "https://github.com/vanruesc/postprocessing/issues"
},
"files": [
"build"
],
"scripts": {
"ava": "ava",
"build": "rollup -c",
"build:production": "cross-env NODE_ENV=production npm run build",
"watch": "rollup -c -w",
"dev": "concurrently -k -n server,rollup,eslint \"hs -s\" \"rollup -c -w\" \"esw -w src demo/src\"",
"doc": "rimraf public/docs && esdoc",
"lint": "eslint src demo/src",
"prepublishOnly": "npm test && npm run doc",
"pretest": "rimraf build && npm run build:production",
"test": "ava"
},
"ava": {
"failFast": true,
"files": [
"test/**/*.js"
],
"require": [
"esm"
]
},
"eslintConfig": {
"extends": "aether"
},
"peerDependencies": {
"three": ">= 0.102.0 < 0.123.0"
},
"devDependencies": {
"@babel/core": "7.x.x",
"@babel/preset-env": "7.x.x",
"@rollup/plugin-babel": "5.x.x",
"@rollup/plugin-node-resolve": "10.x.x",
"ava": "3.x.x",
"concurrently": "5.x.x",
"cross-env": "7.x.x",
"dat.gui": "0.x.x",
"esdoc": "1.x.x",
"esdoc-importpath-plugin": "1.x.x",
"esdoc-standard-plugin": "1.x.x",
"eslint": "7.x.x",
"eslint-config-aether": "1.x.x",
"eslint-watch": "7.x.x",
"esm": "3.x.x",
"http-server": "0.x.x",
"rimraf": "3.x.x",
"rollup": "2.x.x",
"rollup-plugin-glsl": "1.x.x",
"rollup-plugin-string": "3.x.x",
"rollup-plugin-terser": "7.x.x",
"spatial-controls": "3.x.x",
"three": "0.x.x",
"three-demo": "4.x.x"
}
}