-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1 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
{
"name": "bootstrap-icons-with-style",
"displayName": "Bootstrap 5 Icon Snippets",
"description": "A Visual Studio Code extension that generates icon snippets from the Bootstrap 5 icon library",
"icon": "logo.png",
"version": "1.0.0",
"publisher": "joshua-needham",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joshuaneedham/bootstrap5-icon-snippets"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Snippets"
],
"activationEvents": [
"onLanguage:html"
],
"main": "./extension.js",
"contributes": {},
"scripts": {
"start": "node src/extension.js",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.75.0",
"@vscode/test-electron": "^2.2.2",
"eslint": "^8.33.0",
"glob": "^8.1.0",
"mocha": "^10.1.0",
"typescript": "^4.9.4"
}
}