-
Notifications
You must be signed in to change notification settings - Fork 147
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "color-wander",
"version": "1.0.0",
"description": "",
"main": "./browser.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "dave.des@gmail.com",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"array-shuffle": "^1.0.0",
"canvas": "^1.3.15",
"clamp": "^1.0.1",
"color-convert": "^1.3.1",
"color-luminance": "^2.1.0",
"color-style": "^1.0.0",
"fastclick": "^1.0.6",
"float-hsl2rgb": "^1.0.2",
"float-rgb2hsl": "^1.0.1",
"get-pixels": "^3.3.0",
"gl-vec2": "^1.0.0",
"lerp": "^1.0.3",
"map-limit": "0.0.1",
"new-array": "^1.0.0",
"object-assign": "^4.1.0",
"pad-left": "^2.1.0",
"raf-loop": "^1.1.3",
"random-float": "^1.0.0",
"seed-random": "^2.2.0",
"simplex-noise": "^2.2.0",
"smoothstep": "^1.0.1",
"unlerp": "^1.0.1",
"wcag-contrast": "^0.1.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"budo": "^8.2.2",
"surge": "^0.18.0",
"uglify-js": "^2.6.2"
},
"scripts": {
"test": "node test.js",
"ffmpeg": "ffmpeg -framerate 30 -i frames/test_%04d.png -y -s:v 1280x720 -c:v libx264 -profile:v high -crf 20 -pix_fmt yuv420p output.mp4",
"deploy": "surge -p .",
"start": "budo browser.js:bundle.js --live -- -t babelify",
"build": "browserify browser.js -t babelify | uglifyjs -m -c warnings=false > bundle.js"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/color-wander.git"
},
"homepage": "https://github.com/mattdesl/color-wander",
"bugs": {
"url": "https://github.com/mattdesl/color-wander/issues"
}
}