-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.78 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
{
"name": "ebean-enhancement",
"displayName": "Ebean Enhancement 11 plugin for Java",
"publisher": "shabirmean",
"description": "An enhancement plugin for the Ebean ORM for Java. Modifies java runtime arguments to use the ebean-agent jar.",
"version": "1.0.1",
"icon": "images/logo-200.png",
"repository": {
"type": "git",
"url": "https://github.com/Shabirmean/vscode-ebean-enhancement-ext"
},
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:ebean.enableEnhancement",
"onCommand:ebean.disableEnhancement"
],
"main": "./out/extension.js",
"contributes": {
"configuration": [
{
"title": "Ebean Enhancement",
"properties": {
"ebean.enhancement.enable": {
"type": "boolean",
"default": false,
"description": "Indicates if Ebean Enhancement has been enabled for this workspace",
"scope": "resource"
}
}
}
],
"commands": [
{
"title": "Enable Ebean Enhancement",
"command": "ebean.enableEnhancement"
},
{
"title": "Disable Ebean Enhancement",
"command": "ebean.disableEnhancement"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile && npm run copy",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"copy": "mkdir -p ./ebean-agent && cp ./src/resources/* ./ebean-agent/"
},
"devDependencies": {
"@types/vscode": "^1.45.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"eslint": "^6.8.0",
"@typescript-eslint/parser": "^2.30.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"glob": "^7.1.6",
"mocha": "^7.1.2",
"typescript": "^3.8.3",
"vscode-test": "^1.3.0"
}
}