-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 948 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
{
"name": "simple-emoji-map",
"version": "0.6.0",
"description": "A simple emoji map that can be built at any time",
"main": "index.js",
"module": "index.mjs",
"jsnext:main": "index.mjs",
"author": "David Sevilla Martín",
"license": "MIT",
"scripts": {
"install": "node bin/build",
"lint": "prettier --single-quote --trailing-comma es5 --print-width 80 --tab-width 4 --write bin/* *.js *.mjs src/**.js"
},
"dependencies": {
"@twemoji/api": "^14.1.2",
"chalk": "^4.1.2",
"cosmiconfig": "^7.0.1",
"emojibase-data": "^15.0.0"
},
"devDependencies": {
"prettier": "^2.5.1"
},
"bin": {
"simple-emoji-map": "./bin/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datitisev/simple-emoji-map.git"
},
"bugs": {
"url": "https://github.com/datitisev/simple-emoji-map/issues"
},
"homepage": "https://github.com/datitisev/simple-emoji-map#readme"
}