-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 1.88 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
67
68
69
70
71
72
{
"name": "vtex-snippets",
"displayName": "VTEX IO Snippets",
"description": "This project aims to have a set of Snippets and shortcuts for creating VTEX IO Store Framework.",
"version": "0.3.3",
"publisher": "brendonguedes",
"author": "Brendon Guedes <brendonguedes@icloud.com> (https://www.linkedin.com/in/brendonguedes/)",
"icon": "images/logo.png",
"license": "MIT",
"scripts": {
"commit": "git-cz"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"galleryBanner": {
"color": "#414558",
"theme": "dark"
},
"repository": {
"url": "https://github.com/brendonguedes/vtex-snippets"
},
"engines": {
"vscode": "^1.57.0"
},
"categories": [
"Snippets"
],
"keywords": [
"vtex",
"vtex-io",
"store-framework",
"jsonc",
"snippets"
],
"contributes": {
"snippets": [
{
"language": "jsonc",
"path": "./snippets/snippets.code-snippets"
}
]
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"husky": "^7.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"cz-emoji": {
"cz-emoji": {
"symbol": true,
"types": [
{
"emoji": "🌟",
"code": ":star2:",
"description": "A new feature",
"name": "feature"
}
]
}
}
}
}