-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "@alexlafroscia/tldr-alfred-workflow",
"version": "2.0.0",
"description": "Alfred workflow for TLDR docs",
"license": "MIT",
"author": {
"name": "Alex LaFroscia",
"email": "[email protected]",
"url": "https://github.com/alexlafroscia"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "NODE_ENV=test ava",
"cache:clear": "./bin/clear-cache.sh",
"cache:view": "./bin/view-cache.sh",
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup"
},
"files": [
"index.js",
"icon.png",
"info.plist"
],
"keywords": [
"alfred",
"workflow",
"alfy"
],
"dependencies": {
"alfy": "0.10.0",
"tldr": "^3.3.2"
},
"devDependencies": {
"ava": "3.13.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-ava": "^11.0.0",
"eslint-plugin-prettier": "^3.1.4",
"nock": "^13.0.4",
"prettier": "^2.1.2"
},
"volta": {
"node": "10.23.0",
"yarn": "1.22.10"
}
}