-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
92 lines (92 loc) · 2.54 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
{
"name": "elixir-test-explorer",
"displayName": "Elixir Test Explorer",
"description": "Run Elixir tests in the Sidebar of Visual Studio Code",
"icon": "images/icon.png",
"author": "Adam Zapaśnik <[email protected]>",
"publisher": "adamzapasnik",
"version": "0.5.0",
"engines": {
"vscode": "^1.52.0"
},
"license": "MIT",
"homepage": "https://github.com/adamzapasnik/vscode-elixir-test-explorer",
"repository": {
"type": "git",
"url": "https://github.com/adamzapasnik/vscode-elixir-test-explorer"
},
"bugs": {
"url": "https://github.com/adamzapasnik/vscode-elixir-test-explorer/issues"
},
"categories": [
"Other"
],
"keywords": [
"test",
"testing",
"exunit",
"elixir",
"test explorer",
"test adapter"
],
"activationEvents": [
"onLanguage:elixir",
"workspaceContains:**/mix.exs",
"workspaceContains:**/*.ex"
],
"main": "./out/src/main.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Elixir Test Explorer configuration",
"properties": {
"elixirTestExplorer.enable": {
"type": "boolean",
"default": true,
"scope": "resource",
"description": "Control whether or not Elixir Test Explorer is enabled."
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/integration/runTest.js",
"test-unit": "./node_modules/ts-mocha/bin/ts-mocha -p tsconfig.json test/unit/**.test.ts"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@types/chai": "^4.2.17",
"@types/glob": "^7.1.3",
"@types/graphlib": "^2.1.7",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.34",
"@types/vscode": "^1.52.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"@vscode/test-electron": "^2.1.3",
"chai": "^4.3.4",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"prettier": "^2.2.1",
"ts-mocha": "^10.0.0",
"typescript": "^4.1.3"
},
"extensionDependencies": [
"hbenl.vscode-test-explorer"
],
"dependencies": {
"graphlib": "^2.1.8",
"vscode-test-adapter-api": "^1.9.0",
"vscode-test-adapter-util": "^0.7.1"
}
}