-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.2 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.2 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
{
"name": "nearest-icons",
"displayName": "Nearest Icons (Font Awesome free icons)",
"description": "Font Awesome icons snippet completions and icons panel displaying for discovering search.",
"icon": "media/ni-logo.png",
"galleryBanner": {
"color": "#000",
"theme": "dark"
},
"publisher": "abax",
"repository": {
"type": "git",
"url": "https://github.com/noGreg/nearest-icons"
},
"version": "1.3.0",
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Extension Packs",
"Other",
"Snippets"
],
"activationEvents": [
"onCommand:extension.openNav",
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.openNav",
"title": "Nearest Icons (Font Awesome free icons)"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./src/test/runTest.ts"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/vscode": "^1.34.0",
"minimist": "^1.2.6",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode-test": "^1.5.2"
},
"dependencies": {
"@types/glob": "^7.1.3",
"glob": "^7.1.6"
}
}