summaryrefslogtreecommitdiff
path: root/package.json
blob: 667ce77b5caead2b4c8ba750d8ef7eb65fc1367a (plain)
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
{
    "name": "vscode-javac",
    "displayName": "Java Language Support",
    "description": "Java support using the Java Compiler API",
    "icon": "icon.png",
    "version": "0.0.41",
    "publisher": "georgewfraser",
    "repository": {
        "type": "git",
        "url": "https://github.com/georgewfraser/vscode-javac.git"
    },
    "license": "MIT",
    "engines": {
        "vscode": "^1.7.0"
    },
    "categories": [
        "Languages",
        "Linters"
    ],
    "keywords": [
        "java"
    ],
    "activationEvents": [
        "onLanguage:java"
    ],
    "main": "./out/lib/Main",
    "files": [
        "target/fat-jar.jar"
    ],
    "contributes": {
        "languages": [
            {
                "id": "java",
                "extensions": [
                    ".java"
                ],
                "aliases": [
                    "Java"
                ]
            }
        ],
        "snippets": [
            {
                "language": "java",
                "path": "./snippets/java.json"
            }
        ],
        "jsonValidation": [
            {
                "fileMatch": "javaconfig.json",
                "url": "./lib/javaconfig.schema.json"
            }
        ],
        "configuration": {
            "title": "Java configuration",
            "properties": {
                "java.externalDependencies": {
                    "type": "array",
                    "items": {
                        "type": "string",
                        "pattern": "^[^:]+:[^:]+:[^:]+(:[^:]+:[^:]+)?$"
                    },
                    "description": "External dependencies of the form groupId:artifactId:version or groupId:artifactId:packaging:version:scope"
                },
                "java.sourceDirectories": {
                    "type": "array",
                    "items": {
                        "type": "string"
                    },
                    "description": "Java source directories in the workspace"
                },
                "java.home": {
                    "type": "string",
                    "description": "Installation directory of Java 8"
                }
            }
        }
    },
    "scripts": {
        "vscode:prepublish": "tsc -p ./",
        "compile": "tsc -watch -p ./",
        "postinstall": "node ./node_modules/vscode/bin/install",
        "test": "mocha out/test"
    },
    "dependencies": {
        "portfinder": "^1.0.13",
        "vscode-languageclient": "3.2.0"
    },
    "devDependencies": {
        "typescript": "^2.2.1",
        "vscode": "^1.1.0",
        "mocha": "^2.4.5",
        "@types/node": "^6.0.40",
        "@types/mocha": "^2.2.32",
        "@types/es6-promise": "^0.0.32"
    }
}