This repository has been archived by the owner on Jul 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 4.49 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
{
"name": "vscode-ocaml-alcotest-test-adapter",
"displayName": "OCaml Alcotest Test Explorer",
"version": "0.8.3",
"preview": false,
"publisher": "release-candidate",
"description": "Support for OCaml Alcotest and Alcotest inline PPX tests.",
"keywords": [
"OCaml",
"Alcotest",
"Test",
"Testing",
"Test Explorer",
"multi-root ready"
],
"markdown": "github",
"qna": "marketplace",
"categories": [
"Testing"
],
"icon": "images/alcotest-logo.png",
"capabilities": {
"untrustedWorkspaces": {
"supported": false,
"description": "Do not run tests in untrusted workspaces because tests can execute arbitrary code!"
}
},
"activationEvents": [
"onLanguage:ocaml",
"onLanguage:dune",
"onLanguage:dune-project",
"onLanguage:dune-workspace",
"workspaceContains:**/dune-workspace",
"workspaceContains:**/dune",
"workspaceContains:**/dune-project",
"workspaceContains:**/*.opam",
"workspaceContains:**/*.ml",
"workspaceContains:**/*.mli",
"workspaceContains:**/*.mll",
"workspaceContains:**/*.mly"
],
"main": "./out/extension",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/Release-Candidate/vscode-ocaml-alcotest-test-adapter/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Release-Candidate/vscode-ocaml-alcotest-test-adapter.git"
},
"homepage": "https://github.com/Release-Candidate/vscode-ocaml-alcotest-test-adapter/blob/main/README.md",
"pricing": "Free",
"engines": {
"vscode": "^1.65.0"
},
"contributes": {
"configuration": {
"title": "Alcotest Test Adapter",
"properties": {
"alcotest.testDirectories": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"test",
"tests"
],
"markdownDescription": "Directories to search for test sources. Must be relative paths."
},
"alcotest.dunePath": {
"type": "string",
"default": "dune",
"markdownDescription": "Path to the Dune executable `dune`, if `opam env` doesn't yield the right one. Can be either an absolute or a path relative to the project's root. Default: `dune`, use the one in the current Opam environment."
}
}
}
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.2",
"@types/vscode": "1.65.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vscode/test-electron": "^2.3.3",
"@vscode/vsce": "^2.19.0",
"chai": "^4.3.7",
"del-cli": "^5.0.0",
"esbuild": "^0.18.13",
"eslint": "^8.45.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-jsdoc": "^46.4.4",
"eslint-plugin-mocha": "^10.1.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"ovsx": "^0.8.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"vsce": {
"dependencies": true,
"yarn": true
},
"scripts": {
"clean": "del-cli -- out",
"lint": "eslint src/**/*.ts test/**/*.ts",
"lint-github": "eslint src/**/*.ts test/**/*.ts -o ./eslint_report.json -f json",
"compile": "tsc -p ./",
"test": "yarn --ignore-engines run compile && node out/test/runner.js",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "yarn --ignore-engines run esbuild-base --sourcemap",
"esbuild-watch": "yarn --ignore-engines run esbuild-base --sourcemap --watch",
"bundle": "yarn --ignore-engines run esbuild-base --minify",
"vscode:prepublish": "yarn --ignore-engines run bundle",
"package": "vsce package",
"publish-vsix": "vsce publish --yarn",
"publish-ovsx": "ovsx publish vscode-ocaml-alcotest-test-adapter-*.vsix --pat"
},
"packageManager": "[email protected]"
}