This repository has been archived by the owner on Mar 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.51 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "vscode-modular-css",
"displayName": "Modular CSS Syntax Highlighter",
"description": "An extension to add Modular-CSS syntax highlighting to VSCode.",
"version": "1.3.3",
"publisher": "andrewleedham",
"scripts": {
"publish": "semantic-release"
},
"author": {
"name": "Andrew Leedham",
"url": "http://andrewleedham.me"
},
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"grammars": [
{
"scopeName": "modular-css.injection",
"path": "./syntaxes/modular-css.json",
"injectTo": [
"source.css"
]
},
{
"scopeName": "modular-css.sass.injection",
"path": "./syntaxes/modular-css.sass.json",
"injectTo": [
"source.sass"
]
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/AndrewLeedham/vscode-modular-css"
},
"keywords": [
"language support",
"vscode",
"extension",
"css",
"modular-css",
"scss",
"sass"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#DFDFDF"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS"
}
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "chore",
"scope": "deps",
"subject": "/\\[security\\].*/",
"release": "patch"
},
{
"type": "docs",
"scope": "readme",
"release": "patch"
}
],
"noteKeywords": [
"BREAKING CHANGE",
"[security]"
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"semantic-release-vsce",
"@semantic-release/github",
"@semantic-release/git"
]
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.3.0",
"@semantic-release/git": "^7.0.16",
"@semantic-release/github": "^5.4.2",
"@semantic-release/release-notes-generator": "^7.3.0",
"husky": "^3.0.4",
"semantic-release": "^15.13.21",
"semantic-release-vsce": "^2.2.8"
},
"dependencies": {}
}