-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
50 lines (50 loc) · 1.06 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
{
"name": "jsdelivr",
"displayName": "jsDelivr",
"description": "Quickly insert any npm package from jsDelivr CDN.",
"version": "1.0.2",
"license": "OSL-3.0",
"publisher": "jsDelivr",
"icon": "media/icon.png",
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:jsDelivr.addPkg"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "jsDelivr.addPkg",
"title": "jsDelivr: Add jsDelivr package"
}
]
},
"scripts": {
"lint": "eslint src",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run lint"
},
"dependencies": {
"algoliasearch": "^3.35.1",
"got": "^9.6.0",
"semver": "^6.3.0"
},
"devDependencies": {
"@martin-kolarik/eslint-config": "^2.0.1",
"eslint": "^6.8.0",
"eslint-plugin-chai-expect": "^2.1.0",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"vscode": "^1.1.37"
},
"repository": {
"type": "git",
"url": "https://github.com/jsdelivr/plugin-vs-code.git"
}
}