-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "vscode-webdriverio-snippets",
"version": "0.3.1",
"description": "WebDriverIO snippets for Visual Studio Code",
"displayName": "WebDriverIO snippets",
"publisher": "Raju",
"keywords": [
"webdriverio",
"webdriver",
"vscode",
"vscodeSnippets"
],
"engines": {
"vscode": "^0.10.x"
},
"galleryBanner": {
"color": "#000066",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spnraju/vscode-webdriverio-snippets.git"
},
"scripts": {
"publish": "vsce publish",
"pack": "vsce package",
"update": "npx npm-check-updates --upgrade && npm install && npm audit fix"
},
"categories": [
"Snippets"
],
"author": "Raju",
"license": "MIT",
"bugs": {
"url": "https://github.com/spnraju/vscode-webdriverio-snippets/issues"
},
"homepage": "https://github.com/spnraju/vscode-webdriverio-snippets#readme",
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/webdriverio_snippets.json"
}
]
},
"devDependencies": {
"vsce": "^2.10.0"
}
}