-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.76 KB
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
{
"name": "covlint",
"displayName": "COVLint",
"description": "An extension that reads issues from a CSV file and displays them in the source code. The CSV format is generated by a script called cov_snap.",
"author": "keides2",
"publisher": "keides2",
"license": "MIT",
"version": "0.4.3",
"repository": {
"type": "git",
"url": "git+https://github.com/keides2/cov_lint.git"
},
"bugs": {
"url": "https://github.com/keides2/cov_lint/issues"
},
"icon": "img/COVLint.jpg",
"keywords": [
"coverity",
"multi-root ready"
],
"categories": [
"Programming Languages",
"Linters",
"Other"
],
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [
"onCommand:covlint.activate",
"onLanguage:plaintext"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "configuration",
"properties": {
"covlintLanguageServer.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"covlintLanguageServer.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
},
"commands": [
{
"command": "covlint.activate",
"title": "COVLint: open CSV file"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile && npm run webpack",
"compile": "tsc -b client/tsconfig.json server/tsconfig.json",
"webpack": "webpack --config client/webpack.config.js --config server/webpack.config.js",
"check:vsix": "node scripts/check-vsix.js",
"watch": "tsc -b -w client/tsconfig.json server/tsconfig.json",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^16.18.34",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"mocha": "^9.2.1",
"typescript": "^5.1.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@vscode/test-electron": "^2.3.4",
"csv-parse": "^5.5.2",
"encoding": "^0.1.13",
"merge-options": "^3.0.4",
"ts-loader": "^9.4.4"
},
"types": "./client/out/extension.d.ts",
"homepage": "https://github.com/keides2/cov_lint#readme",
"directories": {
"doc": "docs"
}
}