This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
66 lines (66 loc) · 1.57 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
61
62
63
64
65
66
{
"name": "alfred-vscode",
"version": "2.1.0",
"description": "Alfred workflow that allows you to browse and open Visual Studio Code (Insiders) projects",
"license": "MIT",
"repository": "kbshl/alfred-vscode",
"homepage": "https://github.com/kbshl/alfred-vscode#readme",
"author": {
"name": "Konstantin Büschel",
"email": "[email protected]",
"url": "https://github.com/kbshl"
},
"keywords": [
"alfred",
"workflow",
"alfred-workflow",
"alfy",
"vscode",
"visual-studio-code",
"project",
"manager",
"project-manager"
],
"engines": {
"node": ">=8",
"npm": ">=5.2.0"
},
"files": [
"index.js",
"lib",
"*.png",
"info.plist",
".bin"
],
"scripts": {
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup",
"test": "npm run lint:js",
"fix": "eslint --fix",
"lint:js": "eslint . --ext .js",
"lint:cm": "commitlint -E HUSKY_GIT_PARAMS",
"cm": "npx git-cz",
"release": "npx standard-version"
},
"dependencies": {
"alfy": "^0.8.0",
"fs-extra": "^4.0.1",
"fuzzysort": "^1.1.4"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-json": "^1.3.2",
"eslint-plugin-security": "^1.4.0",
"husky": "^1.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}