forked from sindresorhus/emoj
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.18 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
{
"name": "emoj",
"version": "3.3.0",
"description": "Find relevant emoji from text on the command-line",
"license": "MIT",
"repository": "sindresorhus/emoj",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"bin": "cli.js",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"cli.js",
"index.js",
"ui.js"
],
"keywords": [
"cli-app",
"cli",
"emoji",
"emojis",
"emoj",
"emoticon",
"search",
"find",
"matching",
"relevant",
"neural",
"networks"
],
"dependencies": {
"clipboardy": "^2.2.0",
"conf": "^7.1.1",
"emojilib": "^2.4.0",
"import-jsx": "^4.0.0",
"ink": "^3.0.3",
"ink-text-input": "^4.0.0",
"mem": "^6.0.1",
"meow": "^7.0.1",
"react": "^16.5.2",
"skin-tone": "^1.0.0"
},
"devDependencies": {
"ava": "^1.4.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"xo": "^0.32.1"
},
"xo": {
"extends": [
"xo-react"
],
"rules": {
"react/prop-types": "off",
"react/state-in-constructor": "off"
}
}
}