forked from sindresorhus/emoj
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 860 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
45
46
47
48
49
{
"name": "emoj",
"version": "0.1.1",
"description": "Find relevant emojis from text on the command-line",
"license": "MIT",
"repository": "sindresorhus/emoj",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
"bin": "cli.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"cli-app",
"cli",
"emoji",
"emojis",
"emoj",
"emoticon",
"search",
"find",
"matching",
"relevant",
"neural",
"networks"
],
"dependencies": {
"chalk": "^1.1.3",
"got": "^6.3.0",
"has-ansi": "^2.0.0",
"lodash.debounce": "^4.0.6",
"log-update": "^1.0.2",
"meow": "^3.7.0"
},
"devDependencies": {
"ava": "*",
"xo": "*"
}
}