-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.72 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
{
"name": "al-developer-pack",
"displayName": "AL Developer Pack",
"description": "Essentials pack for AL Development (Microsoft Dynamics 365 Business Central)",
"publisher": "JorisPoppe",
"author": {
"name": "Joris Poppe",
"url": "https://github.com/jorispoppe"
},
"homepage": "https://github.com/jorispoppe",
"license": "MIT",
"version": "1.0.3",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"engines": {
"vscode": "^1.71.0"
},
"keywords": [
"AL",
"BusinessCentral",
"Business Central",
"MSDyn365BC"
],
"categories": [
"Programming Languages",
"Extension Packs"
],
"repository": {
"type": "git",
"url": "https://github.com/jorispoppe/ALDeveloperPack"
},
"bugs": {
"url": "https://github.com/jorispoppe/ALDeveloperPack/issues"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "al-developer-pack.setConfiguration",
"title": "AL Pack: Update the AL Developer Pack default configuration."
}
]
},
"extensionPack": [
"ms-dynamics-smb.al",
"davidfeldhoff.al-codeactions",
"wbrakowski.al-navigator",
"martonsagi.al-object-designer",
"vjeko.vjeko-al-objid",
"jamespearson.al-test-runner",
"BartPermentier.al-toolbox",
"rasmus.al-var-helper",
"andrzejzwierzchowski.al-code-outline",
"StefanMaron.businesscentral-lintercop",
"nabsolutions.nab-al-tools",
"navipartner.np-retail-workflow-language-support",
"waldo.crs-al-language-extension",
"rvanbekkum.xliff-sync",
"nwallace.createGUID",
"ms-azuretools.vscode-docker",
"bierner.docs-view",
"usernamehw.errorlens",
"donjayamanne.githistory",
"github.vscode-github-actions",
"github.vscode-pull-request-github",
"codezombiech.gitignore",
"eamodio.gitlens",
"yzhang.markdown-all-in-one",
"DavidAnson.vscode-markdownlint",
"ms-vscode.PowerShell",
"humao.rest-client",
"Gruntfuggly.todo-tree",
"vscode-icons-team.vscode-icons",
"streetsidesoftware.code-spell-checker"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/vscode": "^1.71.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"typescript": "^4.7.4",
"@vscode/test-electron": "^2.1.5"
}
}