forked from microsoft/vscode-lombok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.83 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
{
"name": "vscode-lombok",
"displayName": "Lombok Annotations Support for VS Code",
"description": "A lightweight extension to support Lombok annotations processing in Visual Studio Code",
"version": "1.0.0",
"publisher": "GabrielBB",
"icon": "images/icon.png",
"license": "MIT",
"engines": {
"vscode": "^1.21.0"
},
"repository": {
"type": "git",
"url": "https://github.com/GabrielBB/vscode-lombok.git"
},
"keywords": [
"lombok",
"vs-code"
],
"categories": [
"Other"
],
"main": "./out/index",
"activationEvents": [
"onLanguage:java",
"workspaceContains:pom.xml",
"workspaceContains:build.gradle"
],
"contributes": {
"languages": [
{
"id": "java",
"extensions": [
".java",
".jav"
],
"aliases": [
"Java",
"java"
]
}
]
},
"scripts": {
"clean": "node ./node_modules/rimraf/bin.js out/",
"compile": "npm run clean && tsc -p ./",
"test": "npm run compile && node ./out/test/runTest.js",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"vscode:prepublish": "npm run compile",
"vscode:uninstall": "node ./out/uninstall-hook"
},
"devDependencies": {
"@types/jsonic": "^0.3.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^7.0.43",
"tslint": "^6.0.0",
"typescript": "^3.7.5",
"vscode-test": "^1.3.0",
"@types/vscode": "1.21.0",
"glob": "^7.1.6",
"mocha": "^6.1.4",
"rimraf": "^3.0.1"
},
"dependencies": {
"jsonic": "^0.3.1"
}
}