forked from pmndrs/postprocessing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.22 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
{
"name": "postprocessing",
"version": "6.10.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",
"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",
"lint": "npm run lint:lib && npm run lint:demo && npm run lint:test",
"lint:config": "eslint *.js",
"lint:lib": "eslint src",
"lint:demo": "eslint demo/src",
"lint:test": "eslint test",
"build": "rollup -c",
"build:production": "cross-env NODE_ENV=production npm run build",
"watch": "concurrently --kill-others \"esw src -w\" \"rollup -c -w\"",
"doc": "rimraf public/docs && esdoc",
"pretest": "npm run lint && npm run build:production",
"test": "ava",
"prepack": "npm test && npm run doc"
},
"ava": {
"failFast": true,
"files": [
"test/**/*.js"
]
},
"eslintConfig": {
"extends": "aether"
},
"peerDependencies": {
"three": ">= 0.102.0 < 0.113.0"
},
"devDependencies": {
"@babel/core": "7.x.x",
"@babel/preset-env": "7.x.x",
"@rollup/plugin-commonjs": "11.x.x",
"@rollup/plugin-node-resolve": "7.x.x",
"ava": "2.x.x",
"concurrently": "5.x.x",
"cross-env": "6.x.x",
"dat.gui": "0.x.x",
"delta-controls": "2.x.x",
"esdoc": "1.x.x",
"esdoc-importpath-plugin": "1.x.x",
"esdoc-standard-plugin": "1.x.x",
"eslint": "6.x.x",
"eslint-config-aether": "1.x.x",
"eslint-watch": "6.x.x",
"math-ds": "1.x.x",
"rimraf": "3.x.x",
"rollup": "1.x.x",
"rollup-plugin-babel": "4.x.x",
"rollup-plugin-glsl": "1.x.x",
"rollup-plugin-string": "3.x.x",
"rollup-plugin-terser": "5.x.x",
"synthetic-event": "1.x.x",
"three": "0.112.x",
"three-demo": "3.x.x"
}
}