-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.05 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
122
123
124
125
126
127
128
{
"name": "arcgis-assistant",
"displayName": "ArcGIS Assistant",
"description": "A tool for modifying ArcGIS Enterprise and Online items",
"version": "2.3.2",
"publisher": "roemhildtg0196",
"repository": "https://github.com/roemhildtg/vscode-arcgis-assistant",
"config": {
"PORT": 3000,
"APPID": "JYBrPM46vyNVTozY",
"SECRET": "7820dfc5c3254f2b91a095db827a3556"
},
"engines": {
"vscode": "^1.39.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:arcgisAssistant"
],
"main": "./out/extension.js",
"contributes": {
"views": {
"explorer": [
{
"id": "arcgisAssistant",
"name": "ArcGIS"
}
]
},
"commands": [
{
"command": "arcgisAssistant.refreshEntry",
"title": "Refresh"
},
{
"command": "arcgisAssistant.addPortal",
"title": "Add Portal",
"icon": {
"light": "resources/icons/plus-square-solid.svg",
"dark": "resources/icons/plus-square-solid.svg"
}
},
{
"command": "arcgisAssistant.copy",
"title": "Copy"
},
{
"command": "arcgisAssistant.createApp",
"title": "Create New"
},
{
"command": "arcgisAssistant.paste",
"title": "Paste"
},
{
"command": "arcgisAssistant.open",
"title": "Open"
},
{
"command": "arcgisAssistant.delete",
"title": "Delete"
}
],
"menus": {
"commandPalette": [],
"view/title": [
{
"command": "arcgisAssistant.addPortal",
"when": "view == arcgisAssistant",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "arcgisAssistant.createApp"
},
{
"command": "arcgisAssistant.refreshEntry",
"when": "view == arcgisAssistant"
},
{
"command": "arcgisAssistant.copy"
},
{
"command": "arcgisAssistant.paste"
},
{
"command": "arcgisAssistant.delete"
}
]
}
},
"scripts": {
"build": "webpack --mode production",
"build:dev": "webpack --mode development --watch",
"vscode:prepublish": "npm run build",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "jest",
"package": "vsce package",
"postversion": "git push && git push --tags && npm run package"
},
"devDependencies": {
"@types/copy-paste": "^1.1.30",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.7",
"@types/vscode": "^1.39.0",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"ts-loader": "^5.3.1",
"tslint": "^5.20.1",
"typescript": "^3.7.2",
"vsce": "^1.69.0",
"vscode-test": "^1.2.3",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@esri/arcgis-rest-portal": "^2.6.1",
"arcgis-node-util": "^2.0.3",
"copy-paste": "^1.3.0",
"json-stringify-pretty-compact": "^2.0.0",
"open": "^6.4.0"
}
}