This repository has been archived by the owner on Aug 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
121 lines (121 loc) · 3.71 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
{
"name": "vscode-codeception",
"displayName": "VSCode Codeception",
"description": "A simple extension to run Codeception tests without leaving VSCode.",
"publisher": "joelwmale",
"version": "1.2.0",
"license": "MIT",
"icon": "icon.png",
"engines": {
"vscode": "^1.33.0"
},
"repository": {
"type": "git",
"url": "https://github.com/joelwmale/vscode-codeception.git"
},
"categories": [
"Debuggers"
],
"keywords": [
"codecept",
"codeception",
"tests"
],
"activationEvents": [
"onLanguage:php",
"onCommand:vscode-codeception.run-all",
"onCommand:vscode-codeception.run-file",
"onCommand:vscode-codeception.run-method"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-codeception.run-all",
"title": "VSCode Codeception: Run All"
},
{
"command": "vscode-codeception.run-file",
"title": "VSCode Codeception: Run File"
},
{
"command": "vscode-codeception.run-method",
"title": "VSCode Codeception: Run Method"
}
],
"keybindings": [
{
"key": "cmd+k cmd+r",
"command": "vscode-codeception.run-all"
},
{
"key": "cmd+k cmd+t",
"command": "vscode-codeception.run-file"
},
{
"key": "cmd+k cmd+e",
"command": "vscode-codeception.run-method"
}
],
"configuration": {
"title": "VSCode Codeception",
"properties": {
"vscode-codeception.commandSuffix": {
"type": [
"string",
"null"
],
"default": null,
"description": "This string will be appended to the codeception command, it's a great place to add flags like '--debug'"
},
"vscode-codeception.codeceptBinary": {
"type": [
"string",
"null"
],
"default": null,
"description": "Specify a custom codeception binary. Ex: 'codecept', '/usr/local/bin/codecept'"
}
}
},
"problemMatchers": [
{
"name": "codecept",
"owner": "php",
"fileLocation": "absolute",
"pattern": [
{
"regexp": "^\\d+\\)\\s.*$"
},
{
"regexp": "^(.*)$",
"message": 1
},
{
"regexp": "^(.*):(\\d+)$",
"file": 1,
"location": 2
}
]
}
]
},
"scripts": {
"build": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"tests:prepare": "cp -R ./src/test/project-stub ./out/test && yarn run build",
"test": "yarn run tests:prepare && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"php-parser": "^3.0.0-prerelease.8",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode": "^1.1.37"
},
"dependencies": {
"php-parser": "^3.0.0-prerelease.8"
}
}