-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
34 lines (34 loc) · 846 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
{
"name": "grapheme-splitter",
"version": "1.0.4",
"description": "A JavaScript library that breaks strings into their individual user-perceived characters. It supports emojis!",
"homepage": "https://github.com/orling/grapheme-splitter",
"author": "Orlin Georgiev",
"contributors": [
{
"name": "Lucas Tadeu Teixeira",
"email": "[email protected]",
"url": "https://lucas.is"
}
],
"main": "index.js",
"license": "MIT",
"keywords": [
"utf-8",
"strings",
"emoji",
"split"
],
"scripts": {
"test": "tape tests/grapheme_splitter_tests.js"
},
"repository": {
"type": "git",
"url": "https://github.com/orling/grapheme-splitter.git"
},
"bugs": "https://github.com/orling/grapheme-splitter/issues",
"dependencies": {},
"devDependencies": {
"tape": "^4.6.3"
}
}