-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
150 lines (150 loc) · 4.31 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "vsc-material-theme-icons",
"displayName": "Material Theme Icons",
"description": "Material Theme Icons, the most epic icons theme for Visual Studio Code and Material Theme.",
"version": "2.3.1",
"publisher": "equinusocio",
"license": "Apache-2.0",
"author": "Mattia Astorino [@equinusocio]",
"icon": "logo.png",
"engines": {
"vscode": "^1.36.0"
},
"repository": {
"type": "git",
"url": "https://github.com/material-theme/vsc-material-theme-icons.git"
},
"galleryBanner": {
"color": "#11131C",
"theme": "dark"
},
"categories": [
"Themes",
"Other"
],
"keywords": [
"VSCode",
"Themes"
],
"activationEvents": [
"onStartupFinished"
],
"extensionKind": [
"ui",
"workspace"
],
"main": "./out/src/extension",
"contributes": {
"menus": {
"commandPalette": [
{
"command": "eqMaterialThemeIcons.fixIcons",
"when": "config.materialTheme.accent == true"
}
]
},
"commands": [
{
"command": "eqMaterialThemeIcons.fixIcons",
"title": "Fix icons accent. Based on Material Theme",
"category": "🖌 Material Theme Icons"
}
],
"iconThemes": [
{
"id": "eq-material-theme-icons",
"label": "Material Theme Icons",
"path": "./out/variants/Material-Theme-Icons.json"
},
{
"id": "eq-material-theme-icons-darker",
"label": "Material Theme Icons Darker",
"path": "./out/variants/Material-Theme-Icons-Darker.json"
},
{
"id": "eq-material-theme-icons-palenight",
"label": "Material Theme Icons Palenight",
"path": "./out/variants/Material-Theme-Icons-Palenight.json"
},
{
"id": "eq-material-theme-icons-ocean",
"label": "Material Theme Icons Ocean",
"path": "./out/variants/Material-Theme-Icons-Ocean.json"
},
{
"id": "eq-material-theme-icons-light",
"label": "Material Theme Icons Light",
"path": "./out/variants/Material-Theme-Icons-Light.json"
}
]
},
"scripts": {
"precompile": "yarn cleanup",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"cleanup": "rimraf out",
"build": "yarn cleanup && tsc -p ./ && cp src/defaults.json out/src/ && node out/build/index.js --ignore-engines",
"postinstall": "node ./node_modules/vscode/bin/install",
"lint": "tslint **/*.ts",
"pretest": "rimraf ./.nyc_output ./coverage && yarn compile",
"test": "nyc -x '' mocha",
"test:travis": "yarn pretest && nyc -x '' mocha",
"posttest:travis": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"test:vs": "node ./node_modules/vscode/bin/test",
"release": "git pull && standard-version --release-as patch && git push --follow-tags",
"release:minor": "git pull && standard-version --release-as minor && git push --follow-tags",
"release:major": "git pull && standard-version --release-as major && git push --follow-tags"
},
"devDependencies": {
"@types/chai": "4.2.21",
"@types/mocha": "9.0.0",
"@types/mustache": "4.1.2",
"@types/ncp": "2.0.5",
"@types/node": "16.7.10",
"@types/rimraf": "3.0.2",
"@types/semver": "7.3.8",
"@types/sinon": "10.0.2",
"chai": "4.3.4",
"codecov": "3.8.3",
"cpy": "8.1.2",
"execa": "5.1.1",
"json-minify": "1.0.0",
"mocha": "9.1.1",
"mustache": "4.2.0",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"sinon": "11.1.2",
"svgo": "2.5.0",
"tslint": "6.1.3",
"tslint-xo": "0.16.0",
"typescript": "4.4.2",
"vscode": "1.1.37",
"yarn": "1.22.10"
},
"badges": [
{
"url": "https://camo.githubusercontent.com/d3c6e53aa66426dead24cdedab0e83082103bea6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f657175696e75736f63696f2f7673632d6d6174657269616c2d7468656d652e7376673f7374796c653d666c61742d737175617265",
"href": "https://github.com/material-theme/vsc-material-theme-icons/issues",
"description": "Open issues"
},
{
"url": "https://img.shields.io/badge/Support%20this%20project-%F0%9F%92%96%EF%B8%8F-green.svg?style=flat-square",
"href": "https://opencollective.com/vsc-material-theme",
"description": "Support us!"
}
],
"dependencies": {
"semver": "7.3.5",
"standard-version": "9.3.1"
},
"__metadata": {
"id": "8c609a4f-268a-41fb-8fe6-b6fcd95e8113",
"publisherId": "e41388a1-a892-4c1e-940b-1e7c1bf43c97",
"publisherDisplayName": null,
"targetPlatform": "undefined",
"updated": false,
"isPreReleaseVersion": false,
"preRelease": false,
"installedTimestamp": 1658115847437
}
}