-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 2.47 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
96
{
"name": "raymarch",
"version": "1.0.0",
"description": "",
"main": "app.js",
"dependencies": {
"a-big-triangle": "^1.0.3",
"canvas-fit": "^1.5.0",
"ccapture.js": "file:../ccapture.js",
"eases": "^1.0.8",
"gl-audio-analyser": "^1.0.3",
"gl-context": "^0.1.1",
"gl-fbo": "^2.0.5",
"gl-matrix": "^2.3.2",
"gl-shader": "^4.2.1",
"gl-texture2d": "^2.1.0",
"glsl-checker": "^1.0.1",
"glsl-easings": "^1.0.0",
"glsl-fast-gaussian-blur": "^1.0.2",
"glsl-hsv2rgb": "^1.0.0",
"glsl-inverse": "^1.0.0",
"glsl-noise": "0.0.0",
"glsl-sdf-ops": "0.0.3",
"glslify": "^7.1.0",
"lerp": "^1.0.3",
"ndarray-fill": "^0.1.0",
"octavian": "^2.2.0",
"raf": "^3.3.0",
"svg-parser": "^2.0.4",
"svg-path-parser": "^1.1.0",
"tween.js": "^16.6.0",
"webvr-polyfill": "^0.9.24"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babelify": "^10.0.0",
"browserify": "^13.1.1",
"budo": "^11.6.4",
"core-js": "^3.8.1",
"eslint": "^9.5.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"glslify-hex": "^2.1.1",
"glslify-import": "^3.0.0",
"inquirer": "^3.0.6",
"uglify-js": "^2.7.5"
},
"eslintConfig": {
"extends": "standard",
"globals": {
"Audio": true,
"AudioContext": true,
"Image": true,
"dat": true,
"CCapture": true,
"XMLHttpRequest": true,
"WebVRManager": true
}
},
"scripts": {
"start": "shader-reload-cli index.js:bundle.js --live",
"build": "npm run build:bundle",
"build:bundle": "browserify app.js --standalone RayMarch | uglifyjs -cm > bundle.js",
"build:gallery": "npm run build:bundle; node bin/gallery.js",
"gh-pages": "git checkout gh-pages; git rebase master; git push -f origin gh-pages; git checkout master",
"test": "eslint '**/*.js'"
},
"keywords": [],
"author": "Sean Zellmer <[email protected]> (http://lejeunerenard.com)",
"license": "MIT",
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"add-module-exports",
"@babel/plugin-transform-runtime"
]
},
"browserify": {
"transform": [
"babelify",
"glslify"
]
},
"glslify": {
"transform": [
"glslify-import",
"glslify-hex"
]
}
}