-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
126 lines (126 loc) · 3.47 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "kani-vscode-extension",
"displayName": "Kani",
"description": "VSCode IDE integration for Kani",
"publisher": "model-checking",
"repository": {
"type": "git",
"url": "https://github.com/model-checking/kani-vscode-extension"
},
"icon": "kani-logo.png",
"galleryBanner": {
"theme": "light"
},
"bugs": {
"url": "https://github.com/model-checking/kani-vscode-extension/issues"
},
"qna": "https://github.com/model-checking/kani-vscode-extension/blob/main/docs/troubleshooting.md",
"version": "0.0.6",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Testing"
],
"permissions": [
"debug"
],
"activationEvents": [
"onLanguage:rust",
"workspaceContains:*Cargo.toml"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "Kani.runKani",
"when": "editorLangId == rust",
"category": "Kani",
"title": "Run Kani"
},
{
"command": "Kani.runcargoKani",
"when": "editorLangId == rust",
"category": "Kani",
"title": "Run Cargo Kani"
},
{
"title": "Enable CodeLens",
"command": "codelens-kani.enableCodeLens",
"category": "CodeLens Sample"
},
{
"title": "Disable Codelens",
"command": "codelens-kani.disableCodeLens",
"category": "CodeLens Sample"
},
{
"command": "codelens-kani.highlightCoverage",
"title": "Highlight Coverage"
},
{
"command": "codelens-kani.dehighlightCoverage",
"title": "De-Highlight Coverage"
}
],
"configuration": {
"title": "Kani",
"properties": {
"codelens-kani.enableCodeLens": {
"type": "boolean",
"default": true
},
"codelens-kani.highlightCoverage": {
"type": "boolean",
"default": false,
"description": "Controls the visibility of the `generate coverage` button by default."
},
"Kani.showOutputWindow": {
"type": "boolean",
"default": false,
"description": "Controls the visibility of the output window by default."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"pretty": "prettier --write \"src/**/*.ts\"",
"prettier:check:ci": "./node_modules/.bin/prettier --check .",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@types/vscode": "^1.70.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vscode/test-electron": "^2.1.5",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-tsdoc": "^0.2.17",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"prettier": "2.8.0",
"typescript": "^4.7.4"
},
"dependencies": {
"esbuild": "0.16.2",
"readline": "^1.3.0",
"toml": "^3.0.0",
"web-tree-sitter": "^0.20.8"
}
}