forked from vivaxy/alfred-open-in-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "alfred-open-in-vscode",
"version": "1.3.1",
"description": "Alfred workflow to open in VSCode",
"main": "index.js",
"keywords": [
"alfred",
"workflow",
"vscode",
"finder"
],
"author": "vivaxy <[email protected]>",
"license": "GPL-3.0-or-later",
"dependencies": {
"alfy": "^0.11.0",
"fast-glob": "^3.0.4"
},
"scripts": {
"release": "standard-version && npm publish --access=public && git push --follow-tags",
"postinstall": "alfy-init # husky install",
"preuninstall": "alfy-cleanup",
"prepublishOnly": "# pinst --disable",
"postpublish": "# pinst --enable"
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"husky": "6",
"lint-staged": "^11.0.0",
"pinst": "^2.1.4",
"prettier": "^2.2.1",
"standard-version": "^9.1.0"
},
"lint-staged": {
"*.{js,ts,css,less,json,md,html,yml,yaml,pcss,jsx,tsx}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}