-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
73 lines (73 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
71
72
73
{
"name": "vscode-protolint",
"displayName": "Proto Lint",
"description": "Lint your protobufs using protolint",
"license": "MIT",
"homepage": "https://github.com/plexsystems/vscode-protolint",
"version": "0.8.0",
"publisher": "plex",
"icon": "icon/protolint_logo128.png",
"repository": {
"type": "git",
"url": "https://github.com/plexsystems/vscode-protolint.git"
},
"bugs": {
"url": "https://github.com/plexsystems/vscode-protolint/issues"
},
"engines": {
"vscode": "^1.14.0"
},
"categories": [
"Linters"
],
"keywords": [
"proto",
"protocol buffer",
"protobuf",
"lint"
],
"activationEvents": [
"onLanguage:proto3",
"onLanguage:proto"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "protolint.lint",
"title": "Protolint: Lint protobuf file"
}
],
"configuration": {
"type": "object",
"title": "protolint",
"properties": {
"protolint.path": {
"type": "string",
"default": "protolint",
"description": "Path of the protolint executable."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc",
"lint": "tslint --project tsconfig.json",
"precompile": "rimraf ./out && npm run lint",
"watch": "tsc -watch -p ./",
"test": "npm run compile && mocha out/test/*.test.js",
"deploy": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.8",
"@types/vscode": "^1.14.0",
"mocha": "^9.2.2",
"rimraf": "^2.6.3",
"tslint": "^5.8.0",
"typescript": "^3.5.1",
"vsce": "^2.7.0",
"vscode-test": "^1.3.0"
}
}