-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.03 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
{
"name": "vscode-arcgis-js-api-module-butler",
"displayName": "ArcGIS JS API Module Butler",
"version": "1.0.2",
"description": "Automatically add ArcGIS JS API module imports.",
"repository": "https://github.com/stdavis/vscode-arcgis-js-api-module-butler",
"categories": [
"Other"
],
"icon": "butler.png",
"publisher": "ScottDavis",
"main": "./extension.js",
"scripts": {
"format": "prettier --write .",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"package": "vsce package",
"publish": "vsce publish"
},
"contributes": {
"commands": [
{
"command": "vscode-arcgis-js-api-module-butler.addImport",
"title": "ArcGIS Butler: Add Module Import"
},
{
"command": "vscode-arcgis-js-api-module-butler.clearCache",
"title": "ArcGIS Butler: Clear Cached"
}
],
"menus": {
"commandPalette": [
{
"command": "vscode-arcgis-js-api-module-butler.addImport",
"when": "editorLangId == 'javascript' || editorLangId == 'typescript' || editorLangId == 'javascriptreact' || editorLangId == 'typescriptreact'"
},
{
"command": "vscode-arcgis-js-api-module-butler.clearCache"
}
]
}
},
"activationEvents": [
"onCommand:vscode-arcgis-js-api-module-butler.addImport",
"onCommand:vscode-arcgis-js-api-module-butler.clearCache"
],
"prettier": {
"printWidth": 120,
"singleQuote": true
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@types/vscode": "^1.68.0",
"@vscode/test-electron": "^2.1.5",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.0",
"prettier-plugin-packagejson": "^2.2.18",
"typescript": "^4.7.4",
"vsce": "^2.10.0"
},
"engines": {
"vscode": "^1.68.0"
},
"dependencies": {
"espree": "^9.3.2"
}
}