-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 2.5 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
{
"name": "vscode-vertx-starter",
"displayName": "vscode-vertx-starter",
"description": "Create a Vert.x Project",
"version": "0.1.0",
"author": "Daniel Petisme",
"publisher": "danielpetisme",
"icon": "icons/icon.png",
"license": "APACHE-2.0",
"homepage": "https://github.com/danielpetisme/vscode-vertx-starter",
"repository": {
"type": "git",
"url": "[email protected]:danielpetisme/vscode-vertx-starter.git"
},
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"java",
"vertx",
"vert.x",
"starter"
],
"activationEvents": [
"onCommand:vertxStarter.createVertxProject"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "vertxStarter.createVertxProject",
"title": "Create a Vert.x project"
}
],
"configuration": {
"title": "Vert.x Starter",
"properties": {
"vertx-starter.apiUrl": {
"default": "https://start.vertx.io",
"type": "string",
"pattern": "https?://.+",
"scope": "window",
"description": "Vert.x API base URL"
},
"vertx-starter.defaultGroupId": {
"default": "com.example",
"type": "string",
"pattern": "^[A-Za-z0-9_\\-.]+$",
"scope": "window",
"description": "Default Group Id"
},
"vertx-starter.defaultArtifactId": {
"default": "starter",
"type": "string",
"pattern": "^[A-Za-z0-9_\\-.]+$",
"scope": "window",
"description": "Default Artifact Id"
},
"vertx-starter.defaultPackageName": {
"default": "com.example.starter",
"type": "string",
"pattern": "^[A-Za-z0-9_\\-.]+$",
"scope": "window",
"description": "Default package name"
}
}
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"postinstall": "node ./node_modules/vscode/bin/install",
"test-compile": "tsc -p ./",
"test": "npm run test-compile && node ./node_modules/vscode/bin/test",
"tslint": "tslint -t verbose src/*.ts"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"ts-loader": "^6.0.1",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"typescript-tslint-plugin": "^0.3.1",
"vscode": "^1.1.28",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
},
"dependencies": {
"@types/request": "^2.48.1",
"@types/request-promise": "^4.1.43",
"@types/unzipper": "^0.9.2",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"unzipper": "^0.9.11"
}
}