-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
44 lines (44 loc) · 944 Bytes
/
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": "grapheme-breaker",
"version": "0.3.2",
"description": "An implementation of the Unicode grapheme cluster breaking algorithm (UAX #29)",
"main": "src/GraphemeBreaker",
"directories": {
"test": "test"
},
"dependencies": {
"brfs": "^2.0.2",
"unicode-trie": "^1.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.4",
"request": "^2.88.0"
},
"scripts": {
"test": "mocha"
},
"browserify": {
"transform": [
"brfs"
]
},
"repository": {
"type": "git",
"url": "git://github.com/devongovett/grapheme-breaker"
},
"keywords": [
"unicode",
"text",
"break",
"segment",
"character",
"grapheme cluster"
],
"author": "Devon Govett <devongovett@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devongovett/grapheme-breaker/issues"
},
"homepage": "https://github.com/devongovett/grapheme-breaker"
}