generated from hbenl/vscode-example-test-adapter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 3.72 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
{
"name": "vscode-r-test-adapter",
"displayName": "R Test Explorer",
"description": "Run your R tests in the sidebar of Visual Studio Code",
"icon": "img/icon.png",
"author": "M. Eren Akbiyik <erenakbiyik@gmail.com>",
"publisher": "meakbiyik",
"version": "0.7.0",
"license": "MIT",
"homepage": "https://github.com/meakbiyik/vscode-r-test-adapter",
"repository": {
"type": "git",
"url": "https://github.com/meakbiyik/vscode-r-test-adapter.git"
},
"bugs": {
"url": "https://github.com/meakbiyik/vscode-r-test-adapter/issues"
},
"badges": [
{
"url": "https://dev.azure.com/meakbiyik/vscode-r-test-adapter/_apis/build/status/meakbiyik.vscode-r-test-adapter?branchName=master",
"href": "https://dev.azure.com/meakbiyik/vscode-r-test-adapter/_build/latest?definitionId=1&branchName=master",
"description": "Azure Pipelines"
}
],
"categories": [
"Other"
],
"keywords": [
"test",
"testing",
"R",
"testthat"
],
"main": "out/src/main.js",
"scripts": {
"clean": "rimraf out *.vsix",
"build": "tsc",
"watch": "tsc -w",
"rebuild": "npm run clean && npm run build",
"package": "vsce package",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/main.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"publish": "vsce publish -p $VSCE_PAT",
"deploy": "vsce publish -p $VSCE_PAT",
"test": "node ./out/test/runTest.js",
"coverage": "nyc -x .vscode-test/ -a true -i source-map-support/register -r lcov -e .ts -x \"*.test.ts\" -x \"*.d.ts\" npm run test",
"prepare": "husky install"
},
"dependencies": {
"lookpath": "^1.2.2",
"minimatch": "^9.0.1",
"split2": "^4.2.0",
"tmp-promise": "^3.0.3",
"uuid": "^9.0.0",
"vscode-test-adapter-util": "^0.7.1",
"web-tree-sitter": "^0.20.8",
"winreg": "^1.2.4"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/deep-equal-in-any-order": "^1.0.1",
"@types/glob": "^8.1.0",
"@types/minimatch": "^5.1.2",
"@types/mocha": "^10.0.1",
"@types/split2": "^4.2.0",
"@types/uuid": "^9.0.1",
"@types/vscode": "^1.78.1",
"@types/winreg": "^1.2.32",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vscode/test-electron": "^2.3.2",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"deep-equal-in-any-order": "^2.0.6",
"esbuild": "^0.17.19",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "2.8.8",
"source-map-support": "^0.5.21",
"typescript": "^5.0.4",
"vsce": "^2.6.7"
},
"engines": {
"vscode": "^1.78.1"
},
"activationEvents": [
"onLanguage:r",
"onView:test-explorer"
],
"contributes": {
"configuration": {
"type": "object",
"title": "R Test Explorer configuration",
"properties": {
"RTestAdapter.logpanel": {
"description": "Write diagnotic logs to an output panel",
"type": "boolean",
"scope": "resource",
"default": true
},
"RTestAdapter.logfile": {
"description": "Write diagnostic logs to the given file",
"type": "string",
"scope": "resource"
},
"RTestAdapter.RscriptPath": {
"description": "Path to the Rscript binary",
"type": "string",
"scope": "resource"
}
}
}
}
}