-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "emoji-aware",
"version": "3.1.0",
"description": "Emoji-aware unicode string utilities",
"main": "emoji-aware.js",
"scripts": {
"test": "ava test/*.js",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | codecov"
},
"keywords": [
"unicode",
"emoji",
"string",
"split"
],
"author": "Beau Gunderson <[email protected]> (https://beaugunderson.com/)",
"license": "MIT",
"dependencies": {
"lodash.flattendeep": "^4.4.0",
"parsimmon": "^1.18.1"
},
"directories": {
"test": "test"
},
"devDependencies": {
"ava": "^4.2.0",
"benchmark": "^2.1.4",
"cheerio": "^1.0.0-rc.3",
"codecov.io": "^0.1.6",
"emojilib": "^2.4.0",
"nyc": "^15.0.0",
"request": "^2.88.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beaugunderson/emoji-aware.git"
},
"bugs": {
"url": "https://github.com/beaugunderson/emoji-aware/issues"
},
"homepage": "https://github.com/beaugunderson/emoji-aware#readme"
}