-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
57 lines (57 loc) · 1.33 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
{
"name": "jest-snippets",
"displayName": "Jest Snippets",
"description": "Code snippets for testing framework Jest",
"version": "1.9.1",
"publisher": "andys8",
"icon": "images/jest_snippets_icon.png",
"license": "MIT",
"scripts": {
"format:sort-json": "sort-json snippets/snippets.json",
"format:prettier": "prettier --write package.json *.md snippets/*",
"format": "npm run format:sort-json && npm run format:prettier",
"publish": "vsce publish",
"test": "jest --ci",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/andys8/vscode-jest-snippets"
},
"engines": {
"vscode": "^1.11.0"
},
"categories": [
"Snippets"
],
"galleryBanner": {
"color": "#99424f",
"theme": "light"
},
"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"
}
]
},
"devDependencies": {
"jest": "28.1.3",
"prettier": "2.7.1",
"sort-json": "^2.0.1",
"vsce": "^2.10.0"
}
}