-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.78 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
{
"name": "clymate-themes-vscode",
"displayName": "Clymate Themes for VS Code",
"description": "A collection of themes for VS Code under the Clymate themes hood.",
"version": "1.0.0",
"publisher": "clydedsouza",
"license": "MIT",
"preview": false,
"repository": {
"type": "git",
"url": "https://github.com/ClydeDz/clymate-vscode-theme"
},
"keywords": [
"Theme",
"Themes",
"Dark theme",
"VS Code theme",
"Clymate",
"Clymate themes",
"Red theme",
"Monochrome",
"Pop Neon",
"Vintage"
],
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Themes"
],
"icon": "icon.png",
"contributes": {
"themes": [
{
"label": "Clymate",
"uiTheme": "vs-dark",
"path": "./themes/clymate-vsdark.color-theme.json"
},
{
"label": "Clymate Pop Neon",
"uiTheme": "vs-dark",
"path": "./themes/clymate-pop-neon-vsdark.color-theme.json"
},
{
"label": "Clymate Vintage",
"uiTheme": "vs-dark",
"path": "./themes/clymate-vintage-vsdark.color-theme.json"
},
{
"label": "Clymate Monochrome",
"uiTheme": "vs-dark",
"path": "./themes/clymate-monochrome-vsdark.color-theme.json"
}
]
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.4",
"mocha-junit-reporter": "^1.22.0",
"strip-json-comments": "^3.0.1"
},
"scripts": {
"test": "mocha test/test.js --reporter mocha-junit-reporter --timeout 10000 --exit"
}
}