-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.88 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
{
"name": "cute-artisan-test",
"displayName": "Cute Artisan Test",
"description": "Run Laravel Artisan tests quickly and easily",
"version": "0.3.3",
"publisher": "nshiro",
"engines": {
"vscode": "^1.89.0"
},
"categories": [
"Testing"
],
"keywords": [
"laravel",
"artisan",
"phpunit",
"test",
"pest"
],
"license": "MIT",
"icon": "img/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/nshiro/cute-artisan-test"
},
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "cute-artisan-test.run",
"title": "Cute Artisan Test: run"
},
{
"command": "cute-artisan-test.run-previous",
"title": "Cute Artisan Test: run previous"
}
],
"configuration": {
"title": "Cute Artisan Test",
"properties": {
"cute-artisan-test.testCommand": {
"type": "string",
"description": "If this path is not set, it will fall back to `php artisan test'."
},
"cute-artisan-test.terminalFocus.enabled": {
"type": "boolean",
"default": false,
"description": "Determines whether the terminal is focused after the test."
},
"cute-artisan-test.phpunitAndPestInMixedMode.enabled": {
"type": "boolean",
"default": true,
"description": "When PHPUnit and Pest are used at the same time, the contents of the file under test will be used to infer which file it is."
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.89.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"eslint": "^8.57.0",
"typescript": "^5.4.5",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.3.9"
}
}