forked from foliojs/grapheme-breaker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 967 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
{
"name": "grapheme-breaker",
"version": "0.4.0",
"description": "An implementation of the Unicode grapheme cluster breaking algorithm (UAX #29)",
"main": "src/GraphemeBreaker",
"directories": {
"test": "test"
},
"dependencies": {
"unicode-trie": "^0.3.1"
},
"devDependencies": {
"chai": "^1.9.1",
"coffee-script": "^1.7.1",
"mocha": "^1.20.1",
"request": "^2.37.0"
},
"scripts": {
"test": "mocha",
"prepublish": "coffee -c src/",
"postpublish": "rm -rf src/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/devongovett/grapheme-breaker"
},
"keywords": [
"unicode",
"text",
"break",
"segment",
"character",
"grapheme cluster"
],
"author": "Devon Govett <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devongovett/grapheme-breaker/issues"
},
"homepage": "https://github.com/devongovett/grapheme-breaker"
}