-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.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
{
"name": "lucid-jasmine",
"displayName": "Jasmine Bazel Test Runner",
"description": "Allows Jasmine unit tests to be run from the editor using Bazel commands",
"version": "2.3.0",
"license": "MIT",
"engines": {
"vscode": "^1.42.0"
},
"categories": [
"Other"
],
"publisher": "davidneil",
"repository": {
"type": "git",
"url": "https://github.com/DavidANeil/lucid-vscode-jasmine.git"
},
"icon": "icon.png",
"keywords": [
"bazel",
"jasmine",
"test",
"runner"
],
"activationEvents": [
"onLanguage:typescript",
"onCommand:lucid-jasmine.runTest"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "lucid-jasmine.runTest",
"title": "Run a given spec"
}
],
"menus": {
"commandPalette": [
{
"command": "lucid-jasmine.runTest",
"when": "false"
}
]
},
"configuration": {
"type": "object",
"title": "Jasmine Bazel Test Runner configuration",
"properties": {
"jasmine-bazel.terminal": {
"type": "string",
"enum": [
"active",
"dedicated",
"new"
],
"default": "active",
"description": "Use the active, new, or dedicated terminal to run commands"
},
"jasmine-bazel.cd": {
"type": [
"boolean"
],
"default": true,
"description": "Add a `cd` invocation to the script so that it will work in other directories"
},
"jasmine-bazel.matcher": {
"type": [
"string",
"null"
],
"default": null,
"description": "Use an additional RegEx to match function calls"
},
"jasmine-bazel.noHistory": {
"type": "boolean",
"default": false,
"description": "Prefix commands with a space character to exclude them from bash history"
},
"jasmine-bazel.ruleName": {
"type": "string",
"default": "specs",
"description": "Bazel rule name to append to the package label"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.61.0",
"@types/node": "^16.10.9"
},
"dependencies": {
"typescript": "^4.4.4"
}
}