forked from craftycram/lets-hassel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
151 lines (151 loc) · 5.17 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
{
"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": "5.0.2",
"publisher": "craftycram",
"icon": "res/logo-let-s-hassel.png",
"engines": {
"vscode": "^1.40.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.installMacOS",
"title": "[Let's Hassel] > Install required tools (MacOS)"
},
{
"command": "extension.installDebian",
"title": "[Let's Hassel] > Install required tools (Debian)"
},
{
"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.loremIpsunParagraph",
"title": "[Let's Hassel > LoremIpsum] > Generate a specified amount of paragraphs."
},
{
"command": "extension.wssCreateFiles",
"title": "[Let's Hassel] > Create WSS files. (HTML & CSS)"
}
],
"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.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.wss.title": {
"type": "String",
"default": "setTitleInConfig",
"description": "This will be the title visible in the browser."
}
}
}
},
"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.11.7",
"@types/vscode": "^1.40.0",
"glob": "^7.1.5",
"mocha": "^6.2.2",
"typescript": "^3.6.4",
"tslint": "^5.20.0",
"vscode-test": "^1.2.2"
},
"dependencies": {
"fs-extra": "^8.1.0",
"lorem-ipsum": "^2.0.3",
"mustache": "^3.1.0",
"npm-programmatic": "0.0.12",
"simple-git": "^1.128.0"
}
}