-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
129 lines (129 loc) · 4.13 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
127
128
129
{
"name": "phpunit-extended",
"displayName": "PHPUnit Extended",
"description": "Run PHPUnit tests from VSCode.",
"version": "1.0.7",
"publisher": "santigarcor",
"icon": "images/phpunit.png",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/santigarcor/vscode-phpunit-extended"
},
"homepage": "https://github.com/santigarcor/vscode-phpunit-extended/blob/master/README.md",
"bugs": {
"url": "https://github.com/santigarcor/vscode-phpunit-extended/issues"
},
"license": "MIT",
"keywords": [
"phpunit",
"test",
"php"
],
"activationEvents": [
"onCommand:phpunit.Test",
"onCommand:phpunit.TestFile",
"onCommand:phpunit.TestSuite",
"onCommand:phpunit.TestSuiteWithExclusions",
"onCommand:phpunit.TestNearest",
"onCommand:phpunit.LastTest",
"onCommand:phpunit.CancelCurrentTest"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "phpunit.Test",
"title": "PHPUnit Test"
},
{
"command": "phpunit.TestFile",
"title": "PHPUnit Test Current File"
},
{
"command": "phpunit.TestSuite",
"title": "PHPUnit Test All Suite"
},
{
"command": "phpunit.TestSuiteWithExclusions",
"title": "PHPUnit Test All Suite With Exclusions"
},
{
"command": "phpunit.TestNearest",
"title": "PHPUnit Test Nearest"
},
{
"command": "phpunit.LastTest",
"title": "PHPUnit Run Last Test"
},
{
"command": "phpunit.CancelCurrentTest",
"title": "PHPUnit Cancel Current Test"
}
],
"configuration": {
"type": "object",
"title": "PHPUnit Configuration",
"properties": {
"phpunit.execPath": {
"type": "string",
"default": "",
"description": "Path to phpunit executable (if empty it tries to use composer installation)."
},
"phpunit.args": {
"type": "array",
"default": [],
"description": "Any phpunit args (phpunit --help)"
},
"phpunit.envVars": {
"type": "object",
"default": {},
"title": "Set environment variables before running phpunit"
},
"phpunit.excludedGroups": {
"type": "array",
"default": [],
"description": "Groups to be excluded from the tests"
},
"phpunit.scriptsAfterTests": {
"type": "object",
"default": {
"ok": [],
"error": []
},
"description": "Scripts to execute after the tests run"
},
"phpunit.showOutput": {
"type": "string",
"default": "always",
"description": "Show the output console after the tests run (always, error, ok)."
}
}
},
"grammars": [
{
"language": "Log",
"scopeName": "code.log",
"path": "./syntaxes/phpunit.tmLanguage"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": "^6.0.106",
"mocha": "^3.5.0",
"typescript": "^2.8.3",
"vscode": "^1.1.16"
}
}