forked from sindresorhus/emoj
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.21 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "emoj",
"version": "1.1.0",
"description": "Find relevant emoji 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": {
"auto-bind": "^1.1.0",
"clipboardy": "^0.1.1",
"conf": "^1.0.0",
"got": "^6.3.0",
"has-ansi": "^2.0.0",
"import-jsx": "^1.0.0",
"ink": "^0.1.1",
"lodash.debounce": "^4.0.6",
"mem": "^1.1.0",
"meow": "^3.7.0",
"skin-tone": "^1.0.0"
},
"devDependencies": {
"ava": "*",
"eslint-config-xo-react": "^0.13.0",
"eslint-plugin-react": "^7.1.0",
"xo": "^0.18.2"
},
"xo": {
"extends": [
"xo-react"
],
"rules": {
"react/prop-types": 0
},
"settings": {
"react": {
"pragma": "h"
}
}
}
}