-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.6 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
{
"name": "playwright-snippets",
"version": "1.0.1",
"license": "MIT",
"author": "Nitay Neeman",
"description": "📋 A Visual Studio Code extension which adds predefined useful code snippets for Playwright",
"homepage": "https://github.com/nitayneeman/vscode-playwright-snippets",
"keywords": [
"Playwright"
],
"repository": {
"type": "git",
"url": "https://github.com/nitayneeman/vscode-playwright-snippets.git"
},
"bugs": "https://github.com/nitayneeman/vscode-playwright-snippets/issues",
"displayName": "Playwright Snippets",
"publisher": "nitayneeman",
"icon": "images/playwright-logo.png",
"galleryBanner": {
"color": "#2b3137",
"theme": "dark"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/snippets.json"
},
{
"language": "javascriptreact",
"path": "./snippets/snippets.json"
},
{
"language": "typescript",
"path": "./snippets/snippets.json"
},
{
"language": "typescriptreact",
"path": "./snippets/snippets.json"
}
]
},
"badges": [
{
"description": "Build",
"url": "https://travis-ci.com/nitayneeman/vscode-playwright-snippets.svg?token=vHfpxFNvotCsScqrpvMs&branch=main",
"href": "https://travis-ci.com/nitayneeman/vscode-playwright-snippets"
}
],
"engines": {
"vscode": "^1.53.0"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"vscode:publish": "vsce publish"
},
"devDependencies": {
"jest": "^24.1.0"
}
}