-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "txt-shuffle",
"version": "1.0.3",
"description": "Customisable text shuffling animations.",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Bruno Imbrizi",
"url": "https://github.com/brunoimbrizi"
},
"dependencies": {
"canvas-sketch-util": "^1.10.0",
"eases": "^1.0.8"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"canvas-hypertxt": "^1.0.1",
"esmify": "^2.1.1",
"tinyify": "^3.1.0",
"tweakpane": "^3.1.2"
},
"scripts": {
"demo:animations": "budo demo/animations/:bundle.js --live --dir demo/animations/",
"demo:multiline": "budo demo/multiline/:bundle.js --live --dir demo/multiline/ -- -p esmify",
"build:animations": "browserify demo/animations/index.js -t babelify -p tinyify -o demo/animations/bundle.js",
"build:multiline": "browserify demo/multiline/index.js -p esmify -p tinyify -o demo/multiline/bundle.js"
},
"keywords": [
"text",
"shuffle",
"scramble",
"flicker"
],
"repository": {
"type": "git",
"url": "git://github.com/brunoimbrizi/txt-shuffle.git"
},
"homepage": "https://github.com/brunoimbrizi/txt-shuffle",
"bugs": {
"url": "https://github.com/brunoimbrizi/txt-shuffle/issues"
}
}