-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
100 lines (100 loc) · 2.38 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
100
{
"name": "convert-object-to-jsx",
"displayName": "Convert Object to JSX",
"description": "Convert between object entry and jsx prop formats",
"publisher": "zachgawlik",
"version": "1.1.0",
"engines": {
"vscode": "^1.68.1"
},
"keywords": [
"jsx",
"react",
"keybindings",
"object-to-jsx",
"jsx-to-object"
],
"categories": [
"Formatters",
"Other"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#011623",
"theme": "dark"
},
"contributes": {
"configuration": {
"type": "object",
"title": "Convert Object to JSX",
"properties": {
"convert-object-to-jsx.useJsxShorthand": {
"type": "boolean",
"default": false,
"description": "Instead of `prop={true}`, use `prop`",
"scope": "window"
}
}
},
"commands": [
{
"command": "extension.convertObjectToJsx",
"title": "Convert Object <-> JSX"
}
],
"keybindings": [
{
"command": "extension.convertObjectToJsx",
"key": "ctrl+,",
"when": "editorTextFocus"
}
]
},
"main": "./out/extension.js",
"bugs": {
"url": "https://github.com/ZachGawlik/vscode-convert-object-to-jsx/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ZachGawlik/vscode-convert-object-to-jsx.git"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "jest",
"pretest": "npm run compile && npm run lint",
"commit": "git-cz",
"lint": "eslint .",
"format": "prettier 'src/**/*.ts' README.md --write"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^16.x.x",
"@types/vscode": "^1.68.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^2.1.0",
"jest": "^29.5.0",
"prettier": "2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}