This repository has been archived by the owner on May 15, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
121 lines (121 loc) · 3.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "hocus-pocus",
"displayName": "Hocus Pocus",
"description": "Make useful things appear out of the void, in JavaScript and TypeScript.",
"version": "1.7.0",
"publisher": "nicoespeon",
"author": "Nicolas Carlo <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nicoespeon/hocus-pocus.git"
},
"homepage": "https://github.com/nicoespeon/hocus-pocus",
"bugs": "https://github.com/nicoespeon/hocus-pocus/issues",
"keywords": [
"javascript",
"typescript",
"react"
],
"categories": [
"Formatters",
"Programming Languages",
"Other"
],
"icon": "assets/logo/vignette.png",
"galleryBanner": {
"color": "#34223A",
"theme": "dark"
},
"engines": {
"vscode": "^1.40.0"
},
"main": "./out/extension.js",
"scripts": {
"test": "jest",
"build": "webpack --mode none",
"watch": "webpack --mode none --watch",
"prepackage": "rm -rf dist/*.vsix && rm -rf out/",
"vscode:prepublish": "webpack --mode production",
"package": "vsce package",
"postpackage": "mkdir -p dist && mv *.vsix dist",
"package:install": "code --install-extension dist/*.vsix"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@babel/parser": "7.7.5",
"@babel/traverse": "7.7.4",
"@babel/generator": "7.7.4",
"@typescript/vfs": "1.0.0",
"typescript": "3.8.3"
},
"devDependencies": {
"@types/babel__traverse": "7.0.8",
"@types/jest": "24.0.23",
"@types/node": "10.12.21",
"@types/vscode": "1.40.0",
"husky": "3.1.0",
"jest": "24.9.0",
"prettier": "1.19.1",
"pretty-quick": "2.0.1",
"replace-in-file-webpack-plugin": "1.0.6",
"ts-jest": "24.2.0",
"ts-loader": "6.2.1",
"tslint": "5.12.1",
"vsce": "1.71.0",
"vscode-test": "1.2.0",
"webpack": "4.41.2",
"webpack-cli": "3.3.10"
},
"activationEvents": [
"onCommand:hocusPocus.createFunction",
"onCommand:hocusPocus.createFunctionWithTypes",
"onCommand:hocusPocus.createVariable",
"onCommand:hocusPocus.createClass",
"onCommand:hocusPocus.createSwitchCases",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"contributes": {
"commands": [
{
"command": "hocusPocus.createFunction",
"title": "Create Function",
"category": "Hocus Pocus"
},
{
"command": "hocusPocus.createFunctionWithTypes",
"title": "Create Function",
"category": "Hocus Pocus"
},
{
"command": "hocusPocus.createVariable",
"title": "Create Variable",
"category": "Hocus Pocus"
},
{
"command": "hocusPocus.createClass",
"title": "Create Class",
"category": "Hocus Pocus"
},
{
"command": "hocusPocus.createSwitchCases",
"title": "Create Switch Cases",
"category": "Hocus Pocus"
}
]
},
"keybindings": [
{
"command": "hocusPocus.quickFix",
"key": "alt+enter",
"when": "editorTextFocus"
}
]
}