forked from foliojs/linebreak
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 839 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 839 Bytes
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
{
"name": "linebreak",
"version": "1.0.2",
"description": "An implementation of the Unicode Line Breaking Algorithm (UAX #14)",
"repository": {
"type": "git",
"url": "https://github.com/devongovett/linebreaker.git"
},
"keywords": [
"unicode",
"text",
"wrapping"
],
"author": "Devon Govett <devongovett@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devongovett/linebreaker/issues"
},
"homepage": "https://github.com/devongovett/linebreaker",
"dependencies": {
"base64-js": "1.3.1",
"brfs": "^2.0.2",
"unicode-trie": "^2.0.0"
},
"devDependencies": {
"mocha": "^7.0.1",
"request": "^2.88.0"
},
"scripts": {
"test": "mocha --reporter landing"
},
"main": "src/linebreaker",
"browserify": {
"transform": [
"brfs"
]
}
}