forked from elonmallin/vscode-phpunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.44 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
{
"name": "phpunit",
"displayName": "PHPUnit",
"description": "Run PHPUnit tests from VSCode.",
"version": "3.0.0",
"publisher": "emallin",
"icon": "images/phpunit.png",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/elonmallin/vscode-phpunit"
},
"homepage": "https://github.com/elonmallin/vscode-phpunit/blob/master/README.md",
"bugs": {
"url": "https://github.com/elonmallin/vscode-phpunit/issues"
},
"license": "SEE LICENSE IN LICENSE.md",
"keywords": [
"phpunit",
"test",
"unittest",
"php"
],
"activationEvents": [
"onCommand:phpunit.Test",
"onCommand:phpunit.TestNearest",
"onCommand:phpunit.TestDirectory",
"onCommand:phpunit.RerunLastTest"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "phpunit.Test",
"title": "PHPUnit Test"
},
{
"command": "phpunit.TestNearest",
"title": "PHPUnit Test Nearest"
},
{
"command": "phpunit.TestDirectory",
"title": "PHPUnit Test Directory"
},
{
"command": "phpunit.RerunLastTest",
"title": "PHPUnit Rerun last test"
}
],
"configuration": {
"type": "object",
"title": "PHPUnit Configuration",
"properties": {
"phpunit.driverPriority": {
"type": "array",
"default": ["Path", "Composer", "Phar", "Docker", "Ssh", "GlobalPhpUnit"],
"description": "Set the priority of drivers to try and run phpunit with. The drivers will try and find phpunit in common places."
},
"phpunit.php": {
"type": "string",
"description": "Absolute path to php. Fallback to global php if it exists on the command line."
},
"phpunit.phpunit": {
"type": "string",
"description": "Path to phpunit. Can be the phpunit file or phpunit.phar.\n\nAutomatically finds it in common places:\n - Composer vendor directory\n - phpunit.phar in your project\n - phpunit (or phpunit.bat for windows) globally on the command line"
},
"phpunit.args": {
"type": "array",
"default": [],
"description": "Any phpunit args (phpunit --help) E.g. --configuration ./phpunit.xml.dist"
},
"phpunit.preferRunClassTestOverQuickPickWindow": {
"type": "boolean",
"default": false,
"description": "If we should test the whole class instead of showing the quick pick window when cursor is on anything but a function name."
},
"phpunit.clearOutputOnRun": {
"type": "boolean",
"default": true,
"description": "True will clear the output when we run a new test. False will leave the output after every test."
},
"phpunit.execPath": {
"type": "string",
"description": "DEPRECATED: Use phpunit.php and phpunit.phpunit instead."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {
"command-exists": "^1.2.2",
"escape-string-regexp": "^1.0.5"
}
}