-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.18 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
{
"name": "hopscotch",
"displayName": "Hopscotch",
"description": "Color scheme inspired by the Hopscotch learning platform for kids",
"version": "0.8.2",
"publisher": "idleberg",
"license": "CC0-1.0",
"author": {
"name": "Jan T. Sott",
"url": "http://github.com/idleberg"
},
"scripts": {
"test": "vscode-linter",
"vscode:prepublish": "npm run test"
},
"keywords": [
"hopscotch"
],
"repository": {
"type": "git",
"url": "https://github.com/idleberg/vscode-hopscotch"
},
"homepage": "https://github.com/idleberg/vscode-hopscotch#readme",
"bugs": {
"url": "https://github.com/idleberg/vscode-hopscotch/issues"
},
"icon": "images/logo.png",
"galleryBanner": {
"color": "#322931",
"theme": "dark"
},
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Hopscotch",
"uiTheme": "vs-dark",
"path": "./themes/Hopscotch.json"
},
{
"label": "Hopscotch [proofreader]",
"uiTheme": "vs-dark",
"path": "./themes/Hopscotch [proofreader].json"
},
{
"label": "Hopscotch Mono",
"uiTheme": "vs-dark",
"path": "./themes/Hopscotch Mono.json"
},
{
"label": "Hopscotch Mono [proofreader]",
"uiTheme": "vs-dark",
"path": "./themes/Hopscotch Mono [proofreader].json"
},
{
"label": "Hopscotch Classic",
"uiTheme": "vs-dark",
"path": "./themes/Hopscotch Classic.json"
},
{
"label": "Hopscotch (TextMate)",
"uiTheme": "vs-dark",
"path": "./themes/Hopscotch.tmTheme"
}
]
},
"devDependencies": {
"husky": "^4.2.5",
"vscode-linter": "^0.3.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}