-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "devz-front-end-pack",
"publisher": "WizSolucoes",
"displayName": "DevZ - Front-end Pack",
"description": "Pacote com extensões do VSCode recomendadas para os DevZs que trabalham com Angular",
"version": "1.2.0",
"icon": "resources/logo-devz.png",
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Extension Packs"
],
"galleryBanner": {
"color": "#FF9100",
"theme": "dark"
},
"keywords": [
"Wiz Soluções",
"Wiz",
"DevZ",
"Front-End"
],
"repository": {
"type": "git",
"url": "https://github.com/wizsolucoes/vscode-devz-front-end-pack"
},
"homepage": "https://github.com/wizsolucoes/vscode-devz-front-end-pack/blob/master/README.md",
"extensionPack": [
"johnpapa.Angular2",
"Angular.ng-template",
"eg2.vscode-npm-script",
"ms-vscode.vscode-typescript-tslint-plugin",
"infinity1207.angular2-switcher",
"GregorBiswanger.json2ts",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"sonarsource.sonarlint-vscode"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.3.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}