-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 921 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
{
"name": "convert-emojis-names",
"version": "1.0.1",
"description": "Convert filenames for popular emojis pack from '1f44b-1f3fe.png' to '👋🏾.png'",
"main": "index.js",
"homepage": "https://github.com/kldkv/convert-emojis-names",
"bugs": "https://github.com/kldkv/convert-emojis-names/issues",
"scripts": {
"start": "node index.js"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"index.js",
"cli.js",
"README.md",
"LICENSE"
],
"bin": {
"convert-emojis-names": "./cli.js"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/kldkv/convert-emojis-names.git"
},
"keywords": [
"emojis",
"convert",
"joypixels",
"joy-pixels",
"twemoji",
"openmoji"
],
"author": "Alexander Kladkov",
"license": "MIT",
"dependencies": {
"emojis-list": "^3.0.0",
"lodash.isequal": "^4.5.0"
}
}