-
Notifications
You must be signed in to change notification settings - Fork 173
/
package.json
executable file
·79 lines (79 loc) · 1.99 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
{
"name": "three-bmfont-text",
"version": "3.0.0",
"description": "renders BMFont files in ThreeJS with word-wrapping",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "dave.des@gmail.com",
"url": "https://github.com/mattdesl"
},
"standard": {
"globals": [
"THREE"
]
},
"dependencies": {
"array-shuffle": "^1.0.1",
"inherits": "^2.0.1",
"layout-bmfont-text": "^1.2.0",
"nice-color-palettes": "^3.0.0",
"object-assign": "^4.0.1",
"quad-indices": "^2.0.1",
"three-buffer-vertex-data": "^1.0.0"
},
"devDependencies": {
"bluebird": "^3.7.2",
"browserify": "^16.5.1",
"budo": "^11.6.3",
"glsl-aastep": "^1.0.1",
"glsl-noise": "0.0.0",
"glslify": "^7.0.0",
"load-bmfont": "^1.0.0",
"standard": "^14.3.4",
"sun-tzu-quotes": "^1.0.0",
"three": "^0.118.3",
"three-orbit-viewer": "^69.2.9",
"three-vignette-background": "^1.0.2",
"uglify-js": "^3.10.0"
},
"scripts": {
"build": "browserify test/test-shader.js -t glslify | uglifyjs -cm > test/bundle.js",
"start": "budo test/test-shader.js:bundle.js --dir test --live -- -t glslify",
"test-2d": "budo test/test-2d.js:bundle.js --dir test --live",
"test-3d": "budo test/test-3d.js:bundle.js --dir test --live",
"test-multi": "budo test/test-multi.js:bundle.js --dir test --live",
"test-msdf": "budo test/test-msdf.js:bundle.js --dir test --live",
"test": "standard"
},
"keywords": [
"bmfont",
"bitmap",
"font",
"text",
"three",
"threejs",
"quad",
"quads",
"batch",
"render",
"fonts",
"layout",
"word",
"wrap",
"word-wrap",
"word-wrapping",
"wrapping",
"glyph",
"glyphs"
],
"repository": {
"type": "git",
"url": "git://github.com/Jam3/three-bmfont-text.git"
},
"homepage": "https://github.com/Jam3/three-bmfont-text",
"bugs": {
"url": "https://github.com/Jam3/three-bmfont-text/issues"
}
}