-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.92 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": "react-clean-code-structure",
"displayName": "React Clean Code Structure",
"description": "Create a boilerplate folder structure based on Presentational/Container code pattern for React/React Native.",
"version": "0.0.5",
"engines": {
"vscode": "^1.55.0"
},
"icon": "icon.png",
"repository": {
"url": "https://github.com/MaiconGilton/react-clean-code-structure.git",
"type": "git"
},
"author": {
"name": "Maicon Gilton",
"email": "[email protected]"
},
"publisher": "MaiconGilton",
"categories": [
"Snippets"
],
"activationEvents": [
"onCommand:react-clean-code-structure.createComponent"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "react-clean-code-structure.createComponent",
"title": "📂 New React Clean Component"
}
],
"menus": {
"explorer/context": [
{
"command": "react-clean-code-structure.createComponent",
"group": "react-clean-code-structure"
}
]
}
},
"scripts": {
"publish": "vsce publish patch",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.55.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"eslint": "^7.19.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
}
}