-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.7 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.7 KB
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
{
"name": "flutter-xml-layout",
"displayName": "XML Layout for Flutter",
"description": "XML Layout for Flutter. Brings Angular's style to Flutter!",
"publisher": "WaseemDev",
"version": "0.0.33",
"icon": "images/logo.png",
"repository": {
"type": "github",
"url": "https://github.com/waseemdev/vscode-flutter.xml-layout"
},
"engines": {
"vscode": "^1.34.0"
},
"keywords": [
"flutter",
"dart",
"widgets",
"xml",
"angular"
],
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "flutter.xml-layout.regenerate-all",
"title": "XML Layout for Flutter: Re-generate all XML & JSON files"
}
],
"snippets": [
{
"language": "dart",
"path": "./snippets/dart.json"
},
{
"language": "xml",
"path": "./snippets/xml.json"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile-prod": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none",
"postinstall": "node ./node_modules/vscode/bin/install",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/q": "^1.5.2",
"@types/rgrove__parse-xml": "^1.1.0",
"mkdirp": "^0.5.1",
"ts-loader": "^6.0.4",
"ts-node": "^8.2.0",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode": "^1.1.37",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5"
},
"dependencies": {
"@rgrove/parse-xml": "^2.0.1",
"q": "^1.5.1"
}
}