-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 731 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 731 Bytes
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
{
"name": "alfred-keycode",
"version": "0.3.0",
"description": "Get JavaScript keycode",
"license": "MIT",
"repository": "radibit/alfred-keycode",
"author": "Radimir Bitsov <radimir.bitsov@gmail.com>",
"type": "module",
"engines": {
"node": ">=14"
},
"scripts": {
"test": "xo && ava",
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup"
},
"files": [
"index.js",
"icon.png",
"info.plist"
],
"keywords": [
"alfred",
"workflow",
"keycode"
],
"dependencies": {
"alfred-notifier": "^0.2.3",
"alfy": "^0.12.2"
},
"devDependencies": {
"alfy-test": "^0.4.2",
"ava": "^3.15.0",
"xo": "^0.47.0"
},
"xo": {
"prettier": true
}
}