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
100 lines (90 loc) · 2.16 KB
/
package.json
File metadata and controls
100 lines (90 loc) · 2.16 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "postprocessing",
"version": "5.3.2",
"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": "src/index.js",
"sideEffects": false,
"license": "Zlib",
"keywords": [
"2d",
"3d",
"rendering",
"filter",
"effect",
"composer",
"pass",
"gpgpu",
"rtt",
"rendertexture",
"rendertarget"
],
"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": {
"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",
"doc": "rimraf public/docs && esdoc",
"deploy": "cpx demo/assets/** public/demo",
"pretest": "npm run lint && npm run build:production",
"test": "npm run ava",
"prepack": "npm test && inline-import",
"postpublish": "inline-import -r"
},
"ava": {
"failFast": true,
"files": ["test/**/*.js"]
},
"eslintConfig": {
"extends": "delta"
},
"peerDependencies": {
"three": ">= 0.87.0 < 0.100.0"
},
"devDependencies": {
"@babel/core": "7.x.x",
"@babel/preset-env": "7.x.x",
"ava": "1.x.x",
"cpx": "1.x.x",
"cross-env": "5.x.x",
"dat.gui": "0.x.x",
"delta-controls": "2.x.x",
"esdoc": "1.x.x",
"esdoc-standard-plugin": "1.x.x",
"eslint": "5.x.x",
"eslint-config-delta": "0.x.x",
"inline-import": "1.x.x",
"math-ds": "1.x.x",
"rollup": "0.x.x",
"rollup-plugin-babel": "4.x.x",
"rollup-plugin-babel-minify": "6.x.x",
"rollup-plugin-commonjs": "9.x.x",
"rollup-plugin-node-resolve": "4.x.x",
"rollup-plugin-string": "2.x.x",
"rimraf": "2.x.x",
"synthetic-event": "0.x.x",
"three": "0.99.x",
"three-demo": "3.x.x",
"three-gltf-loader": "1.99.x"
}
}