-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.68 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
{
"name": "react-scaffold",
"publisher": "callum-booth",
"displayName": "react-scaffold",
"description": "Scaffolding react components, the quick way",
"version": "1.1.1",
"license": "mit",
"author": {
"name": "Callum Booth",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/callumbooth/vscode-react-scaffold/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/callumbooth/vscode-react-scaffold.git"
},
"keywords": [
"react",
"scaffold",
"boilerplate"
],
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:reactScaffold.createFunctional",
"onCommand:reactScaffold.createClass",
"onCommand:reactScaffold.createClassLifecycle",
"onCommand:reactScaffold.createReducer",
"onCommand:reactScaffold.createFileOfType"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "React Scaffold",
"properties": {
"reactScaffold.useJSX": {
"type": "boolean",
"default": true,
"markdownDescription": "Choose if the file extension should be .js or .jsx"
},
"reactScaffold.includePropTypesDeclaration": {
"type": "boolean",
"default": false,
"markdownDescription": "Choose if the generated file should import the prop-types package"
}
}
},
"commands": [
{
"command": "reactScaffold.createFileOfType",
"title": "Create file..."
}
],
"menus": {
"explorer/context": [
{
"command": "reactScaffold.createFileOfType",
"when": "explorerResourceIsFolder"
}
]
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"eslint": "^5.13.0",
"typescript": "^3.3.1",
"vscode": "^1.1.28",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
}
}