-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.34 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
55
56
57
58
59
60
{
"name": "alfred-translayta",
"version": "2.1.1",
"description": "Alfred workflow, which translates in uk-en/en-uk directions, save words to favorites.",
"license": "MIT",
"homepage": "https://github.com/dev99problems/alfred-translayta#readme",
"main": "index.js",
"scripts": {
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup",
"test": "jest --config=jest.config.js",
"test:cov": "pnpm test -- --collectCoverage=true --collectCoverageFrom=src/**/*.js"
},
"repository": {
"type": "git",
"url": "[email protected]:dev99problems/alfred-translayta.git"
},
"author": {
"name": "Eugene Chulkov",
"email": "[email protected]"
},
"engines": {
"node": ">=14.8.0"
},
"keywords": [
"alfred",
"alfy",
"translate",
"alfred-translate",
"alfred-translayta",
"workflow",
"mac",
"macos",
"osx"
],
"dependencies": {
"@vitalets/google-translate-api": "5.1.0",
"alfy": "0.11.1",
"lodash.get": "4.4.2"
},
"devDependencies": {
"alfy-test": "0.4.2",
"husky": "3.1.0",
"jest": "26.6.3",
"lint-staged": "9.5.0",
"prettier": "1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "pnpm test"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
}
}