-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.09 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
{
"name": "codegen",
"displayName": "CodeGen",
"description": "Generates lines of code from a given line with placeholders and inserts variables in CSV format. Will generate as many lines as there are CSV variables.",
"publisher": "etron",
"version": "0.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ben-CA/CodeGen"
},
"author": {
"name": "etron",
"email": "[email protected]"
},
"keywords": [
"Search & Replace",
"Replace",
"Generate",
"Code",
"Generator",
"Again & Again",
"Power Repeat",
"Multiplier",
"REGEX"
],
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "extension.CodeGen",
"title": "CodeGen"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.17.18",
"eslint": "^5.16.0",
"typescript": "^3.8.3",
"vscode": "^1.1.36"
}
}