-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
54 lines (54 loc) · 1.1 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
48
49
50
51
52
53
54
{
"name": "alfred-google-translate",
"version": "2.0.9",
"description": "Alfred 3 workflow to translate with google translate api",
"license": "MIT",
"repository": "xfslove/alfred-google-translate",
"author": {
"name": "hanwen.huang",
"email": "[email protected]",
"url": "https://github.com/xfslove/alfred-google-translate"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && ava",
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup"
},
"files": [
"tts.js",
"languages.js",
"translate.js",
"token.js",
"index.js",
"icon.png",
"tts.png",
"info.plist"
],
"keywords": [
"translate",
"google-translate",
"alfred",
"alfred-workflow",
"workflow",
"alfy"
],
"dependencies": {
"alfy": "^0.9.0",
"configstore": "^2.0.0",
"got": "^6.3.0",
"uuid": "^3.3.2",
"socks-proxy-agent": "^4.0.2"
},
"devDependencies": {
"alfy-test": "^0.3.0",
"puppeteer": "^1.11.0",
"codecov": "^3.6.5",
"coveralls": "^2.11.11",
"nyc": "^7.0.0",
"ava": "*",
"xo": "*"
}
}