-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
96 lines (96 loc) · 2.42 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": "canvas-sketch-cli",
"version": "1.15.0",
"description": "A CLI used alongside canvas-sketch",
"main": "./src/index.js",
"bin": {
"canvas-sketch": "src/index.js",
"canvas-sketch-cli": "src/index.js",
"canvas-sketch-gif": "src/ffmpeg-gif.js",
"canvas-sketch-mp4": "src/ffmpeg-mp4.js"
},
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-syntax-async-generators": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"body-parser": "^1.19.0",
"browserify": "^17.0.0",
"budo": "^11.8.3",
"busboy": "^1.6.0",
"chalk": "^2.4.1",
"cli-format": "^3.0.9",
"concat-stream": "^1.6.2",
"convert-source-map": "^1.6.0",
"cross-spawn": "^6.0.5",
"dateformat": "^3.0.3",
"defined": "^1.0.0",
"duplexer2": "^0.1.4",
"esmify": "^2.1.1",
"filenamify": "^2.1.0",
"from2-string": "^1.1.0",
"get-stdin": "^6.0.0",
"glslify": "^6.3.0",
"html-minifier": "^3.5.17",
"install-if-needed": "^1.0.4",
"is-builtin-module": "^2.0.0",
"is-error": "^2.2.1",
"konan": "^2.1.1",
"loose-envify": "^1.4.0",
"maxstache": "^1.0.7",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"ora": "^2.1.0",
"pretty-bytes": "^5.1.0",
"pretty-ms": "^3.2.0",
"require-package-name": "^2.0.1",
"resolve": "^1.8.1",
"resolve-global": "^1.0.0",
"right-now": "^1.0.0",
"rimraf": "^2.6.2",
"semver": "^5.5.0",
"subarg": "^1.0.0",
"tempy": "^0.3.0",
"terser": "^5.15.0",
"through2": "^2.0.3"
},
"devDependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.19",
"@texel/color": "^1.1.1",
"canvas-sketch": "^0.7.7",
"regl": "^1.3.7",
"tape": "^4.9.1"
},
"scripts": {
"test": "node test.js"
},
"keywords": [
"canvas",
"generative",
"art",
"sketch",
"sketching",
"webgl",
"glsl",
"2d"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/canvas-sketch-cli.git"
},
"homepage": "https://github.com/mattdesl/canvas-sketch-cli",
"bugs": {
"url": "https://github.com/mattdesl/canvas-sketch-cli/issues"
}
}