forked from lTyl/opentype-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.5 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": "opentype-layout-improved",
"version": "1.2.4",
"description": "word wraps and lays out Opentype.js glyphs. A fork from https://github.com/Jam3/opentype-layout",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"object-assign": "^4.1.0",
"defined": "^1.0.0",
"word-wrapper-improved": "^1.0.8"
},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"budo": "^8.3.0",
"canvas-loop": "^1.0.7",
"dom-css": "^2.0.0",
"draw-svg-path": "^1.0.0",
"keycode": "^2.1.2",
"opentype.js": "^0.6.3",
"parse-svg-path": "^0.1.1",
"parse-unit": "^1.0.1",
"semistandard": "^8.0.0",
"uglify-js": "^2.6.3"
},
"scripts": {
"test": "semistandard && node test.js",
"start": "budo demo/canvas.js:bundle.js --live -- -t babelify",
"build": "browserify demo/canvas.js -t babelify | uglifyjs -m -c warnings=false > bundle.js"
},
"keywords": [
"opentype",
"layout",
"word",
"wrap",
"wordwrap",
"wrapping",
"words",
"css",
"text",
"line",
"height",
"width",
"metrics",
"compute"
],
"repository": {
"type": "git",
"url": "git://github.com/lTyl/opentype-layout.git"
},
"homepage": "https://github.com/Jam3/opentype-layout",
"bugs": {
"url": "https://github.com/Jam3/opentype-layout/issues"
}
}