forked from bchatard/alfred-jetbrains
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
{
"name": "@bchatard/alfred-jetbrains",
"version": "1.9.4",
"description": "Alfred3 workflow to easily open your projects with your favorite JetBrains product.",
"exports": "./src/index.js",
"type": "module",
"scripts": {
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bchatard/alfred-jetbrains.git"
},
"keywords": [
"jebrains",
"alfred",
"workflow",
"alfred-workflow",
"productivity"
],
"author": "bchatard",
"license": "MIT",
"bugs": {
"url": "https://github.com/bchatard/alfred-jetbrains/issues"
},
"homepage": "https://github.com/bchatard/alfred-jetbrains#readme",
"dependencies": {
"alfy": "^1.0.0",
"execa": "^6.0.0",
"fast-xml-parser": "^4.0.7",
"fuse.js": "^6.5.3",
"which": "^2.0.1"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"husky": "^8.0.0",
"prettier": "^2.5.0",
"pretty-quick": "^3.1.2"
},
"engines": {
"node": ">=14"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"volta": {
"node": "14.18.2"
}
}