-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.8 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.8 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
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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "vscode-msgraph-autocomplete",
"displayName": "MS Graph Completion",
"description": "This VSCode extension allows you to auto-complete the Microsoft Graph API URLs you are writing. The extension does this by the help of the APIs behind the Microsoft Graph Explorer.",
"icon": "assets/logo.png",
"version": "1.2.0",
"preview": false,
"publisher": "eliostruyf",
"galleryBanner": {
"color": "#161938",
"theme": "dark"
},
"badges": [
{
"description": "version",
"url": "https://img.shields.io/github/package-json/v/estruyf/vscode-msgraph-autocomplete?color=green&label=vscode-msgraph-autocomplete&style=flat-square",
"href": "https://github.com/estruyf/vscode-msgraph-autocomplete"
}
],
"repository": {
"type": "git",
"url": "https://github.com/estruyf/vscode-msgraph-autocomplete"
},
"bugs": {
"url": "https://github.com/estruyf/vscode-msgraph-autocomplete/issues"
},
"maintainers": [
{
"name": "Elio Struyf",
"email": "elio@struyfconsulting.be",
"url": "https://www.eliostruyf.com"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/estruyf"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/zMeFRy9"
}
],
"license": "MIT",
"engines": {
"vscode": "^1.54.0"
},
"categories": [
"Other"
],
"keywords": [
"microsoft",
"graph",
"autocomplete",
"msgraph",
"api"
],
"activationEvents": [
"*",
"onCommand:msgraph.autocomplete.clearCache"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "msgraph.autocomplete.clearCache",
"title": "MS Graph: Clear autocomplete cache"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "npm run test-compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"test:api": "jest",
"cache": "node ./scripts/populate-cache.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "26.0.22",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/node-fetch": "2.5.8",
"@types/node-gzip": "1.1.0",
"@types/pluralize": "0.0.29",
"@types/vscode": "^1.54.0",
"@types/yamljs": "0.2.31",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.19.0",
"glob": "^7.1.6",
"jest": "26.6.3",
"mocha": "^8.2.1",
"ts-jest": "26.5.4",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0",
"yamljs": "0.3.0"
},
"dependencies": {
"native-url": "0.3.4",
"node-fetch": "2.6.1",
"node-gzip": "1.1.2",
"pluralize": "8.0.0"
}
}