-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 1.84 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
{
"name": "vscode-awk-hint",
"displayName": "AWK hint",
"description": "awk autocompletion for VS Code",
"version": "0.0.2",
"license": "GPL-3.0",
"publisher": "hangxingliu",
"author": "hangxingliu",
"engines": {
"vscode": "^1.1.0"
},
"icon": "icon/icon.png",
"galleryBanner": {
"color": "#FFF5F5",
"theme": "light"
},
"categories": [
"Snippets",
"Programming Languages"
],
"keywords": [
"vscode",
"awk",
"hint",
"autocompletion"
],
"main": "./extension/main",
"scripts": {
"fetch-vscode-dts": "node ./extension/vscode.d.ts/FETCH.js",
"fetch-hint-data": "node ./utils/fetch-function-hint-data.js && node ./utils/fetch-variable-hint-data.js",
"test": "node ./node_modules/.bin/_mocha test/**/*.js --delay"
},
"extensionDependencies": [
"luggage66.AWK"
],
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.7",
"cheerio": "^0.22.0",
"colors": "^1.2.0",
"eslint": "^4.18.2",
"fs-extra": "^5.0.0",
"mocha": "^5.0.4",
"request": "^2.88.0",
"vscode": "^1.1.21"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/hangxingliu/vscode-awk-hint"
},
"bugs": {
"url": "https://github.com/hangxingliu/vscode-awk-hint/issues"
},
"homepage": "https://github.com/hangxingliu/vscode-awk-hint",
"activationEvents": [
"onLanguage:awk"
],
"contributes": {
"snippets": [
{
"language": "awk",
"path": "./hint-data/snippets.json"
}
],
"configuration": {
"title": "AWK hint configurations",
"properties": {
"awk-hint.completeEscapedChar": {
"type": "boolean",
"default": true,
"description": "Enable completion for escaped char in string and regexp"
}
}
}
},
"__metadata": {
"id": "d7c1de53-6da0-44d8-a411-5c1b8441a339",
"publisherDisplayName": "Liu Yue",
"publisherId": "43f8445f-f00e-4e08-ab0f-21e398616231"
}
}