-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
49 lines (49 loc) · 834 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": "alfred-emoj",
"version": "3.0.0",
"description": "Alfred workflow to find relevant emoji from text",
"license": "MIT",
"repository": "sindresorhus/alfred-emoj",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"engines": {
"node": ">=14.16"
},
"scripts": {
"test": "xo && ava",
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup"
},
"files": [
"index.js",
"icon.png",
"info.plist"
],
"keywords": [
"emoj",
"emoji",
"emojis",
"smiley",
"emoticon",
"search",
"detect",
"find",
"alfred",
"alfred-workflow",
"workflow",
"alfy"
],
"dependencies": {
"alfy": "^0.12.2",
"emoj": "^3.2.0"
},
"devDependencies": {
"alfy-test": "^0.4.2",
"ava": "^4.1.0",
"xo": "^0.48.0"
}
}