-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
172 lines (172 loc) · 4.45 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "lets-hassel",
"displayName": "Let's Hassel",
"description": "A extension which adds snippets for a bunch of programming languages. Used in the programming classes @HfG",
"version": "10.1.1",
"publisher": "craftycram",
"icon": "res/logo-let-s-hassel.png",
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Snippets",
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/craftycram/lets-hassel.git"
},
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.setupNode",
"title": "[Let's Hassel] > Setup Node.js project in this folder"
},
{
"command": "extension.setupElectron",
"title": "[Let's Hassel] > Setup electron.js project in this folder"
},
{
"command": "extension.loremIpsumWord",
"title": "[Let's Hassel > LoremIpsum] > Generate a specified amount of words."
},
{
"command": "extension.loremIpsumSentence",
"title": "[Let's Hassel > LoremIpsum] > Generate a specified amount of sentences."
},
{
"command": "extension.loremIpsumParagraph",
"title": "[Let's Hassel > LoremIpsum] > Generate a specified amount of paragraphs."
},
{
"command": "extension.wssCreateFiles",
"title": "[Let's Hassel] > Create WSS files. (HTML & CSS)"
},
{
"command": "extension.webCreateFiles",
"title": "[Let's Hassel] > Create web files. (index.html + style.css)"
},
{
"command": "extension.setupRaspiSdCard",
"title": "[Let's Hassel] > Setup RaspberryPi SD Card. (Wifi & SSH config)"
},
{
"command": "extension.firebaseVueDeploy",
"title": "[Let's Hassel] > Setup firebase deployment for your Vue.js project"
}
],
"snippets": [
{
"language": "javascript",
"path": "./snippets/js.json"
},
{
"language": "svg",
"path": "./snippets/svg.json"
},
{
"language": "html",
"path": "./snippets/html.json"
}
],
"configuration": {
"title": "Let's Hassel",
"properties": {
"Let'sHassel.node.eslintconf": {
"type": "boolean",
"description": "Use Let's Hassel standard eslint config"
},
"Let'sHassel.loremIpsum.format": {
"type": "string",
"default": "html",
"enum": [
"html",
"plain"
],
"enumDescriptions": [
"creates plain text",
"creates text in HTML style"
],
"scope": "resource"
},
"Let'sHassel.loremIpsum.minSentencePerParagraph": {
"type": "number",
"default": 4,
"description": "Minimum Sentences in a Paragraph.",
"scope": "resource"
},
"Let'sHassel.loremIpsum.maxSentencePerParagraph": {
"type": "number",
"default": 8,
"description": "Maximum Sentences in a Paragraph.",
"scope": "resource"
},
"Let'sHassel.loremIpsum.minWordsPerSentence": {
"type": "number",
"default": 4,
"description": "Minimum Words in a Sentence.",
"scope": "resource"
},
"Let'sHassel.loremIpsum.maxWordsPerSentence": {
"type": "number",
"default": 16,
"description": "Maximum Words in a Sentence.",
"scope": "resource"
},
"Let'sHassel.wss.filename": {
"type": "string",
"default": "setNameInConfig",
"description": "This will be the filename of the HTML."
},
"Let'sHassel.wss.filenumber": {
"type": "number",
"default": 0,
"description": "This will be the filenumber of the HTML and CSS."
},
"Let'sHassel.web.title": {
"type": "string",
"default": "setTitleInConfig",
"description": "This will be the title visible in the browser."
},
"Let'sHassel.raspi.countrycode": {
"type": "string",
"default": "DE",
"description": "Please set your local wifi coutry code."
},
"Let'sHassel.raspi.workspacecheck": {
"type": "boolean",
"description": "This disables the workspace check."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.38",
"@types/vscode": "^1.45.0",
"glob": "^7.1.5",
"mocha": "^6.2.3",
"tslint": "^5.20.0",
"typescript": "^3.8.3",
"vscode-test": "^1.3.0"
},
"dependencies": {
"fs-extra": "^8.1.0",
"lorem-ipsum": "^2.0.3",
"mustache": "^3.2.1",
"npm-programmatic": "0.0.12",
"simple-git": "^3.5.0"
}
}